|
A PHP User - 07 Sep 2008
fuki-u!!
A PHP User - 07 Sep 2008
hi tell me how checkbox value can be checked and the values can be sent to an e-mail with help php programming
Vaani , mailvaani@gmail.com - 07 Sep 2008
hi tell me how checkbox value can be checked and the values can be sent to an e-mail
A PHP User - 07 Sep 2008
yippee
A PHP User - 07 Sep 2008
[QUOTE]where do I find the someform.php.I created one in the default directory in htdocs where I place my scripts and it did not record anything when I submitted the form[/QUOTE]
Not sure if the comment use BB Code so excuse the QUOTE BB Code. You will need to actually make the someform.php do some thing for example you would just write the below into someform.php
<?php
echo $_GET['Age']."<br />";
echo $_GET['Story']."<br />";
echo $_GET['FaveSport']."<br />";
echo "<pre>";
print_r($_GET['Languages']);
echo "</pre>";
?>
A PHP User - 07 Sep 2008
where do I find the someform.php.I created one in the default directory in htdocs where I place my scripts and it did not record anything when I submitted the form
Thanks for the excellent web page
Jeff - 07 Sep 2008
Great book thank you!
A PHP User - 07 Sep 2008
check
died_at_27 - 07 Sep 2008
this one of the best e-books I ve ever seen, be sure I have seen many. a beginner can build his/her own by using this
tnx
matt - 07 Sep 2008
To Derek Manson
People only correct errors so other readers who may have missed them will see it.
anyway,
if you want xhtml compatable stuff, you need it all lowercase and things like "checked" need to be "checked=checked" in xhtml.
Tom - 07 Sep 2008
Alternately, instead of a select box, you could return an error if the age is bad, as in...
if(!is_numeric(ceil($_POST['age']))) $errors[] = 'Age must be numeric.';
You could also generate the select box with a for loop:
<?php
print'<select name="somefield">'."\n";
for($i = 0; $i < 60; ++$i) {
print'<option value="'.$i.'">'.$i.'</option>'."\n";
}
print"</select>\n";
?>
A PHP User - 07 Sep 2008
The example is fine - he mentioned CHECKED in the text and the code.
Derek Manson - 07 Sep 2008
Don't be such a jackass. The dude took the time to make
the damn thing. I sure as hell wouldent have
taken the time to put all of this information into
this kind of format. Who gives a fuck if he missed a few
small details. Your soposed to LEARN from the examples
and from the information he has given to you. It seems you
are trying to COPY his work and show it as your own.
Fucking loser, get a fucking life and leave people alone.
Scum bags like you piss me off to the core.
-Who ever did this, you did just fine.
Derek Manson - 07 Sep 2008
Don't be such a jackass. The dude took the time to make
the damn thing. I sure as hell wouldent have
taken the time to put all of this information into
this kind of format. Who gives a fuck if he missed a few
small details. Your soposed to LEARN from the examples
and from the information he has given to you. It seems you
are trying to COPY his work and show it as your own.
Fucking loser, get a fucking life and leave people alone.
Scum bags like you piss me off to the core.
-Who ever did this, you did just fine.
Derek Manson - 07 Sep 2008
Don't be such a jackass. The dude took the time to make
the damn thing. I sure as hell wouldent have
taken the time to put all of this information into
this kind of format. Who gives a fuck if he missed a few
small details. Your soposed to LEARN from the examples
and from the information he has given to you. It seems you
are trying to COPY his work and show it as your own.
Fucking loser, get a fucking life and leave people alone.
Scum bags like you piss me off to the core.
-Who ever did this, you did just fine.
Unix Programmer - 07 Sep 2008
This is a nit.
You referred to the CHECKED attribute in the text but not in the example.
(I really like this book! Very well presented.)
A PHP User - 07 Sep 2008
Go to hell
dho - 07 Sep 2008
A really good HTML reference is http://www.selfhtml.org/
Add comment
Please note that by posting a comment here you are committing it to the public domain. This is important so that others can make use of your code themselves, and also so that I can incorporate helpful notes directly into the main text. Comments are limited to 2000 characters in length.
If you are reporting an error in the content, please tell me directly.
|