Tech
Webシステムプログラマーによる、ちょっとためになる(かもしれない)情報共有ブログ
 

【第51回】CodeIgniterのForm_validationクラスについて

 
今日はPHPのフレームワークCodeIgniterのForm_validationクラスについてです。

元々CodeIgniterにvalidationクラスという入力フォームの検証クラスがありま
したが、1.7になってから新たにform_validationクラスという新しい検証クラス
ができました。

1.6で使っているvalidationクラスは1.7でも利用可能ですが、1.7の
form_validationクラスを推奨しています。

ということで、今日はこのform_validationクラスを使ってとても簡単なフォー
ムを作ります。
まずは、準備としてCodeIgniterの1.7.xと日本語パックをダウンロードしておきます。
次のソースを書きます。

1.controller/form.php(コントローラ)

<?php

class Form extends Controller{

// 入力
function input()
{
// URLヘルパの読み込み
$this->load->helper('url');

// フォームバリデーションの読み込み
$this->load->library('form_validation');

// ビューを呼び出す
$this->load->view('form_input_view');
}

// 確認
function confirm()
{
// URLヘルパの読み込み
$this->load->helper('url');

// フォームバリデーションの読み込み
$this->load->library('form_validation');

// バリデーションの設定
$this->form_validation->set_rules('your_name', 'お名前',
'required|xss_clean');
$this->form_validation->set_rules('pc_user_menu', 'PC利用暦',
'required|xss_clean');
$this->form_validation->set_rules('gender', '性別', 'required|xss_clean');
$this->form_validation->set_rules('os[]', '使用OS', 'xss_clean');

// バリデーションの実行
if ($this->form_validation->run() == FALSE)
{
// 失敗した場合は入力画面ビューに戻る
$this->load->view('form_input_view');
}
else
{
// 成功した場合は確認画面ビューを表示
$this->load->view('form_input_view');

}
}
}

2.view/form_input_view.php (入力画面ビュー)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=" />
<title>サンプルです</title>
</head>
<body>
<form action="<?= site_url("form/confirm"); ?>" method="post">
★お名前(必須)<?php echo form_error('your_name'); ?>
<input type="text" name="your_name" value="<?php echo set_value('name');
?>" /><br />
★パソコンの利用暦を選んでください。<?php echo form_error('pc_user_menu'); ?>
<select name="pc_user_menu">
<option value="0" <?php echo set_select('pc_user_menu', '0', TRUE);?>
/>▼選択してください
<option value="1" <?php echo set_select('pc_user_menu', '1');?> />1年未
満</option>
<option value="2" <?php echo set_select('pc_user_menu', '2');?> />1年か
ら2年</option>
<option value="3" <?php echo set_select('pc_user_menu', '3');?> />2年以
上</option>
</select>
<br />
★性別を選んでください。(必須)<?php echo form_error('gender'); ?>
<input type="radio" name="gender" value="man" <?php echo
set_radio('gender', 'man');?> />男性
<input type="radio" name="gender" value="woman" <?php echo
set_radio('gender', 'woman');?> />女性
<br />
★使用しているOSをすべて選択してください。(複数選択可)<br />
<input type="checkbox" name="os[]" value="1" <?php echo
set_checkbox('os[]', '1'); ?> />Windows95<br />
<input type="checkbox" name="os[]" value="2" <?php echo
set_checkbox('os[]', '2'); ?> />Windows98<br />
<input type="checkbox" name="os[]" value="3" <?php echo
set_checkbox('os[]', '3'); ?> />WindowsNT<br />
<input type="checkbox" name="os[]" value="4" <?php echo
set_checkbox('os[]', '4'); ?> />Windows2000<br />
<input type="checkbox" name="os[]" value="5" <?php echo
set_checkbox('os[]', '5'); ?> />WindowsXP<br />
<input type="checkbox" name="os[]" value="6" <?php echo
set_checkbox('os[]', '6'); ?> />WindowsVista<br />
<input type="checkbox" name="os[]" value="7" <?php echo
set_checkbox('os[]', '7'); ?> />Windows 7<br />
<input type="checkbox" name="os[]" value="8" <?php echo
set_checkbox('os[]', '8'); ?> />Mac OS 9<br />
<input type="checkbox" name="os[]" value="9" <?php echo
set_checkbox('os[]', '9'); ?> />Mac OS X<br />
<input type="checkbox" name="os[]" value="10" <?php echo
set_checkbox('os[]', '10'); ?>  />Linux<br />
<input type="checkbox" name="os[]" value="11" <?php echo
set_checkbox('os[]', '11'); ?> />Solaris<br />

<input type="submit" name="send" value="送信" />
</form>
</body>


コントローラとビューにそれぞれソースを置いてから、動作確認をします。

(今回はform_confirm_view.phpは用意していないので、正しく入力した場合の
画面は用意していません。興味のある方は適宜作ってみてください。。。。)

$this->form_validation->set_rules()

メソッドで条件の設定をして、

$this->form_validation->run()

メソッドでフォームの入力内容の検証が実行されて・・・

エラーメッセージはset_error();
入力値の再表示はset_value()、プルダウンはset_select()、ラジオボタンは
set_radio()、チェックボックスはset_checkbox()メソッドでフォームで入力し
た値を再表示することができます。

名前の項目以外の項目を入れて送信ボタンを押してみます。

すると、名前を入れてくださいというエラーメッセージと、入力した値が表示さ
れていることがわかります。

プルダウンやチェックボックスで再表示する場合は、繰り返し文とIF文を駆使し
て選択した項目を表示させるのですが、なんとこれだけでできてしまいます。

ポイントは複数選択のチェックボックスです。

複数選択のチェックボックスの場合は名前と、バリデーションの値を配列にしま
す。set_checkboxメソッドに指定する名前も配列にします。これだけで入力した
複数選択が再表示されます。

本来複数のチェックボックス選択を再表示する場合はロジックをごちゃごちゃと
書かないといけないのですが、ビューファイルにちょこっと書くだけでおしまい
ですから本当に便利です。

もう1つのポイントとして、最初の入力画面にあたるinputメソッドにも
form_validationライブラリを読み込みます。

validation機能は主に確認画面に入れるのが通例なので、1番最初の入力画面に
入れ忘れてしまうことが多いです。

元の入力画面にあたるinputメソッドにform_validationライブラリを読み込まな
いとエラーが発生してしまいます。エラーをなくすために頭を悩ませていたり、
あれこれCodeIgniterのソースをいじっている方も見られますが、その必要はあ
りません。form_validationライブラリを読み込むだけで解決します。

form_validationクラスを使って入力フォームを作る場合は、確認画面のみでは
なく最初の入力画面にもform_validationライブラリを忘れずに読み込むように
しましょう。

CodeIgniterのform_validationクラスを使うとフォーム入力画面と入力チェック
機能がとても簡単にできてしまいます。

CodeIgniterを使っている人もそうでない人もCodeIgniterの最新バージョン、ぜ
ひぜひ使ってみてください。

おしま~い。

トラックバック(0)

トラックバックURL: http://blog.promob.jp/mt/mt-tb.cgi/263

コメント(81)

| コメントする

terrible post you take in

When thieves fall out honest men come by their own.

I really enjoyed this article. Its always nice when you find something that is not only informative but entertaining. Outstanding.

If you speak the truth have a foot in the stirrup.

I join. I agree with told all above. We can communicate on this theme.

user-pic

I'm not able to view this web site properly on saffari I feel there's a drawback

Many times, real estate offices use words that almost sound like a foreign language to the buyer or seller. It is imperative that you understand what you are getting yourself into or you could end paying in the end,

Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts.Any way Ill be subscribing to your feed and I hope you post again soon

Terrific Article, I locate comming to your blog normally and genuinely need to congragulate your guys for writing these captivating blogs. Spekaing of which i have a blog myself and I hope it is possible to take a look and let me know what you believe you are able to study blog

Very valuable idea

Howdy! I'm at work browsing your blog from my new iphone 3gs! Just wanted to say I love reading your blog and look forward to all your posts! Carry on the outstanding work!

I simply couldnt leave your site before telling you tha I really enjoyed the top notch information you offer for your visitors. I will be back often anticipating new posts

Hello webmaster I like your post ….

Instead of criticism write the variants.

The Zune concentrates on being a Portable Media Player. Not a web browser. Not a game machine. Maybe in the future it'll do even better in those areas, but for now it's a fantastic way to organize and listen to your music and videos, and is without peer in that regard. The iPod's strengths are its web browsing and apps. If those sound more compelling, perhaps it is your best choice.

Outstanding work over again. I am looking forward for your next post=)

Would you like to exchanging links beside me ? Please get in touch if you would like

What I want to know is why I ought to care? I mean, not to express that what youve got to say isnt crucial, but I mean, its so generic. Everyones referring to this man. Give us one thing a lot more, something that we can get behind so we can really feel as passionately about it as you do.

Hey ,I think your site is good! I found it on yahoo, I will go back one day.

Nice website, I agree with you 100%!

I consider, that you are not right. I am assured. I can prove it. Write to me in PM, we will talk.

You are certainly right. In it something is and it is excellent thought. It is ready to support you.

I want to say your blog is almost amazing, bye,

Thanks friend. That has been cool seeing

Visit our pet forum.Get every details about your pet.

Visit our pet forum.Get every details about your pet.

Visit our pet forum.Get every details about your pet.

Intimately, the post is in reality the greatest on that notable topic. I agree with your conclusions and also definitely will thirstily look forward to your upcoming updates. Just saying thanks definitely will not simply be enough, for the fantastic lucidity in your writing. I will at once grab your rss feed to stay abreast of any updates. Pleasant work and also much success in your business enterprize!

Hey Eileen did you forget about the busloads of seniors that travelled by the thousands to go to Canada for cheaper prescription medication?? Same drugs, made by the same pharmaceutical companies but half the price. Lets not forget the Canadian online pharmacies that saved seniors money AND the price a of bus ticket. For every rich Canadian trying to jump to the front of the line in Coeur DAlene there were dozens of US seniors travelling to Canada for basic medicines prescribed by their doctors.

Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts.Any way Ill be subscribing to your feed and I hope you post again soon

Have you considered about putting some social bookmarking buttons to these blogs. At least for facebook.

I'm honored to get a call coming from a friend as soon as he found the important recommendations shared on your own site. Going through your blog posting is a real wonderful experience. Thanks again for thinking about readers like me, and I wish you the best of success as being a professional surface area.

Fantastic read, I just passed this onto a friend who was doing a little investigation on that. And he actually bought me lunch because I discovered it for him smile So let me rephrase that: Thanks for lunch!

Thanks so much for giving me an update on this subject on your website. Please know that if a new post appears or in case any alterations occur on the current post, I would be considering reading a lot more and finding out how to make good using of those methods you talk about. Thanks for your efforts and consideration of other people by making this site available.

【第51回】CodeIgniterのForm_validationクラスについて - Tech [Friday] プロモバイルエンジニアブログ Wonderful goods from you, man. I've understand your stuff previous to and you're just extremely fantastic. I actually like what you've acquired here, certainly like what you're saying and the way in which you say it. You make it enjoyable and you still take care of to keep it sensible. I can't wait to read far more 【第51回】CodeIgniterのForm_validationクラスについて - Tech [Friday] プロモバイルエンジニアブログ again from you. Thanks For Share .

Too many home owners and even decorators choose lamp lighting while out shopping without taking measurements and considering both the style and the purpose of the lamp to accommodate the necessities of the living area, Cordyline Red Sister, Glass Bottle Crafts, Who Went To Ellis Island, Natalie T Hemenway, Men With Curlers In Their Hair, Lowen And Navarro, Dead Space Cheats, Eye Diseases In Dogs, Canadian Medications No Prescriptions Hydrocodone, Street Slang Dictionary, M S Swaminathan, Cruise Fishing 32216, Gary Indiana News, Selling Candleholders On Line, Cheap Apartments Berlin, Gay Boy Sites Free, Grand Canyon State, Painters Of The Harlem Renaissance, Parke County Map, Stem Cell Learning Activities, Hee Haw Show, Credit Cards For Teens, Birch Bark Basket, Triassic Plant Life, Block Telemarketing Call, Late Victorian Holocausts, Lapu Lapu Corto, Gwangju Ace Fair 2007, Home Medical Remedies, 357 Dan Wesson,

I agree with your 【第51回】CodeIgniterのForm_validationクラスについて - Tech [Friday] プロモバイルエンジニアブログ, superb post.

I was just having a conversation over this I am glad I came across this it cleared some of the questions I had.

Comfortably, the news post is during truthfulness a hottest on this subject well known subject matter. I agree with ones conclusions and often will desperately look ahead to your updaters. Saying thanks a lot will not just be sufficient, for ones wonderful ability in your producing. I will immediately grab ones own feed to stay knowledgeable from any sort of update versions. Amazing get the job done and much success with yourbusiness results!

excitied for brulian wedding but just bring Peyton back or do not show the wedding traveing abroad or not you do NOT miss your beat friends wedding no matter where you arewho cares about Lucas jahah but I mean Lucas did invite Julian to his wedding for Brooke but idn just bring them back for one eppy and send them on their way

That's a beneficial mindset, nonetheless just isn't make just about any sence at all talking about this mather. Any way with thanks as well as thought about endeavor to talk about your own post towards delicius nonetheless it seems to be a problem in your sites on earth do you make sure you recheck this. thanks again.

Enjoyed looking through this, very good stuff, regards .

That is the good viewpoint, although just isn't help make any kind of sence whatsoever referring to that mather. Virtually any method with thanks as well as i'd try and discuss your own posting in to delicius but it really is apparently problems together with your websites is it possible you need to recheck this. thank you once more.

That is the beneficial point of view, but is not help make every sence by any means discussing that will mather. Virtually any technique many thanks plus pondered try and reveal your publish towards delicius nevertheless it is apparently problems with your websites can you you need to recheck them. thank you once again.

Appreciate taking a few minutes to debate this particular, I believe strongly with this complete together with adore perusing more on this kind of area. Any time feasible, since you pull off working experience, exactly what reactions writing your trusty webpage using much more related information? This is very great for all of us.

They will score less than 650 runs again. That is 100 runs short of what a playoff team needs. They are nowhere near that right now.

Nice one for taking the time to debate this particular, I believe frankly regarding coupled with love exploring on the idea question. When prospective, because get to practical knowledge, wouldn't you reactions updating your primary internet page that have added related information? This can be very for i.

So far, objectively speaking, the only idea in the "unrealistic" category that I like is mine.

FREE AMERICA FROM BOLSHEVISM!

Despite checking this blog multiple times every day, i have yet to post here, but I just have to say thank you for answering all the questions that the reporter failed to do, in addition to providing links so that we can look it up ourselves. Another excellent post by you guys to keep us coming back =)

Or because Fox hates Philadelphia.

A good example of a life where the person is unafraid of death is the life of one of our countrys greatest Christian men: Thomas J. Stonewall Jackson!

besides hide behind a screen and correct peoples spelling ,monitoring replies to your very mundane statements and overall being judge and juror of who has the right to post or not.

I agree with your 【第51回】CodeIgniterのForm_validationクラスについて - Tech [Friday] プロモバイルエンジニアブログ, fantastic post.

Great spending some time go over this kind of, I believe definitely in it plus affection looking through on now this article. In cases where potential, since you develop working experience, do you really thought processes improving your internet site by having farther important information? This is of great help for i.

Oh come on, this is just getting ridiculous now. Theyre fielding like theyre an all Gold Glove team, and were shitting the bed on routine plays.

Oh, sorrydid I go and get more of you neanderthals all sexed up, thinking about that nice, warm, soupy shit?

Unquestionably believe that which you stated. Your favorite reason appeared to be on the net the simplest thing to be aware of. I say to you, I certainly get annoyed while people consider worries that they plainly do not know about. You managed to hit the nail upon the top and defined out the whole thing without having side effect , people can take a signal. Will probably be back to get more. Thanks

Of course, my username also is brought up in about every comment section on NAMBLAs site. Not odd.

Christian birth rate must be diminished materially. Zohar (II 64b)

At least the current DA seems to be somewhat sane.

Hi there, You've done a fantastic job. I will definitely digg it and in my view recommend to my friends. I'm sure they'll be benefited from this web site.

Its a beautiful, peaceful pond, with grass and trees around it, ducks splashing, swans gracefully gliding amidst the prettiest water lilies floating in the water. But theres a problem the teacher explains. The water lilies are growing so fast they are doubling in number every day so that in just 30 days they will smother the pond, killing all the fish and frogs and every other thing that lives in the pond.

Did you see that Nasri goal the other week? Beardsleyesque that little beauty.

A big debate among many fans, payroll of teams. Normally a debate among Yankee fans Vs. Opposing teams, its sad to see that Detroit was a total loss after spending so much on their players last season. Once again, if the Rays and the Tigers didnt show it in 08, spending doesnt mean anything, talent, managing, and coaching does.

I was working the night shift at the Wichita Eagle, one of three reports and

WHERE IN THE HELL DID THEY FIND THIS IDIOT? DID HE GRADUATE FROM THE PROFESSOR THAT WAS ARRESTED BY SGT CROWLEY LIKE OUR PRESIDENT DID? MUST HAVE!! HE CANT EVEN ANSWER QUESTIONS FOR THE MEDIA TO PASS ON TO TELEVISION WHERE THEY WILL TURN IT ALL AROUND, AND NOT TELL YOU WHAT WAS SAID UNDER PRESIDENTS ADVICE. ITS A SHAME WE ALWAYS HERE THE BAD, BUT NEVER ANY UPLIFTING, GOOD NEWS THAT SOMEONE WITH A CONCEALED WEAPONS PERMIT PACKING A FIREARM SAVED A LADY WITH HER 2 KIDS STRAPPED INTO THEIR CAR SEATS FROM A HIJACKING, OR SOMEONE GETTING ROBBED, OR SOMEONE GETTING KIDNAPPED, OR SOMEONE GETTING RAPED, AND OH YES STOPPED SOMEONE FROM GETTING MURDERED. THESE STORIES NEVER MAKE IT TO THE NEWS. THIS ROBERT GIBBS MUST HAVE BEEN HIDDEN UNDER A ROCK ALL HIS LIFE. WATCH THE VIDEO, HE THINKS IT IS FUNNY. MS. HELEN THOMAS AND MR. CHIP REID WHERE TREATED VERY RUDE BY OBAMAS ROBERT GIBBS.

I agree with your 【第51回】CodeIgniterのForm_validationクラスについて - Tech [Friday] プロモバイルエンジニアブログ, fantastic post.

Second, your post sounds like one written by someone who is awfully upset Randy Moss never helped his beloved (and by beloved, I mean the team this individual sorta/kinda roots for when he has the time) Patriots win a Super Bowl and feels the need to be defensive.

That is the great standpoint, yet isn't help make just about any sence in any way talking about that will mather. Any kind of way many thanks in addition to i had try and reveal your article directly into delicius but it really looks like it's a problem using your blogging is it possible you should recheck it. with thanks once again.

Hi, Neat post. There's a problem with your website in web explorer, may test this… IE nonetheless is the market leader and a huge component to folks will omit your fantastic writing because of this problem.

Hi all, -- found our site accidentally in particular walking around throughout the web-based today, and as well , over the moon i always had done! I love the fashion but routine or shapes and colours, however i have to point out that I’m striving while this particular enormous. I’m with the help of Shiira 6 browser, perfectly as the headlines will never collection completely. Appears to be like Well for Netscape Nine yet still.

Great news indeed. Friend on mine has been searching for this information.

Really appreciate you sharing this article.Thanks Again. Keep writing.

Oh please start Varitek for 80+ games, please, Boston!

コメントする