Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php isset form submit

//<form method="post">
//<input type="submit" name="treasure" value="go!">
//</form>

if (isset($_POST['treasure'])){
echo "treasure will be set if the form has been submitted (to TRUE, I believe)";
}
 
PREVIOUS NEXT
Tagged: #php #isset #form #submit
ADD COMMENT
Topic
Name
4+1 =