mallika Posted September 29, 2006 Share Posted September 29, 2006 Hi,I am new with php-mysql.I have a form that can be seen here:[url=http://hunstem.uhd.edu/savephp/form1.html]http://hunstem.uhd.edu/savephp/form1.html[/url]On this form in the very last section in the judging references i wanted to allow user to enter a number from 1 to 10 only but it allows any number .If anyone one knows how to write code to acheive this please help me.Thanks,Mallika. Quote Link to comment https://forums.phpfreaks.com/topic/22503-needed-help-with-php-form/ Share on other sites More sharing options...
wildteen88 Posted September 29, 2006 Share Posted September 29, 2006 Do something like this:[code=php:0]if($POST['jpip1'] >= 1 && $POST['jpip1'] <= 10){ // valid}else{ // invalid}[/code] Quote Link to comment https://forums.phpfreaks.com/topic/22503-needed-help-with-php-form/#findComment-100903 Share on other sites More sharing options...
mallika Posted September 29, 2006 Author Share Posted September 29, 2006 Hi,Thanks for replying.the following is mysql code,please let me know where to insert your code.Thanks a lot ,Mallika.[code]<?include "db.php";$lname = $_POST['lname'];$fname = $_POST['fname'];$cmpaff = $_POST['cmpaff'];$title = $_POST['title'];$street = $_POST['street'];$city = $_POST['city'];$zip = $_POST['zip'];$ophc = $_POST['ophc'];$oph = $_POST['oph'];$hphc = $_POST['hphc'];$hph = $_POST['hph'];$faxc = $_POST['faxc'];$fax = $_POST['fax'];$email = $_POST['email'];$degree = $_POST['degree'];$ya = $_POST['ya'];$disc = $_POST['disc'];$sefhdisc = $_POST['sefhdisc'];$yj = $_POST['yj'];$jpip1 = $_POST['jpip1'];$jpip2 = $_POST['jpip2'];$jpip3 = $_POST['jpip3'];$jpip4 = $_POST['jpip4'];$jpip5 = $_POST['jpip5'];$jpip6 = $_POST['jpip6'];$jpip7 = $_POST['jpip7'];$jpip8 = $_POST['jpip8'];$jpip9 = $_POST['jpip9'];$jpip10 = $_POST['jpip10'];$jpip11 = $_POST['jpip11'];$jpip12 = $_POST['jpip12'];$jptp1 = $_POST['jptp1'];$jptp2 = $_POST['jptp2'];$jptp3 = $_POST['jptp3'];$jptp4 = $_POST['jptp4'];if ($_POST['phase1']) { $phase1 = "on";} else { $phase1 = "off";}if ($_POST['phase2']) { $phase2 = "on";} else { $phase2 = "off";}if ($_POST['intd']) { $intd = "on";} else { $intd = "off";} $Query = "INSERT INTO form1 VALUES ('0', '$lname', '$fname', '$cmpaff', '$title', '$street', '$city', '$zip', '$ophc', '$oph', '$hphc', '$hph', '$faxc', '$fax', '$email', '$degree', '$ya', '$disc', '$sefhdisc', '$yj', '$phase1', '$phase2', $jpip1, $jpip2, $jpip3, $jpip4, $jpip5, $jpip6, $jpip7, $jpip8, $jpip9, $jpip10, $jpip11, $jpip1, $jptp1, $jptp2, $jptp3, $jptp4, '$intd')";$Result = mysql_db_query ($DBName, $Query);mysql_close ($Link);if ($Result) { print "Data saved correctly";} else { print "Error Reported on pform1.php<br>"; print "SQL: <b>$Query</b><br>"; print "$DBName, $Link, $Host<br>";}?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/22503-needed-help-with-php-form/#findComment-100921 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.