-
What the hell!
Ok I have a script that uses a isset to input data. Now I wanted to add a few more values into my mysql table. So I deleted the database, and loaded up the new one. Now it wont work. I did absolutely nothing to the script and suddenly its acting like the isset is broken. I have tried things like != NULL, and it still wont work Its boggling my mind.
Any thoughts?
-
This is really strange. This :
<?php
if (isset($_REQUEST['submit'])){
print ("$_REQUEST[test]");
}
else{
?>
<form method="post" action="test2.php">
<input type="text" name="test">
<input type="submit" name="submit">
</form>
<?php
}
?>
wont even work
:confused:
-
Have you tried given a value to submit?:
Code:
<input type="submit" name="submit" value=" Submit ">
-
I just tried it on my linux parition, an it works. Something must have fooked up my setup. Arg.