|
-
Aug 27th, 2002, 07:33 PM
#1
Thread Starter
Fanatic Member
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?
-
Aug 27th, 2002, 07:57 PM
#2
Thread Starter
Fanatic Member
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
-
Aug 27th, 2002, 09:40 PM
#3
Stuck in the 80s
Have you tried given a value to submit?:
Code:
<input type="submit" name="submit" value=" Submit ">
-
Aug 28th, 2002, 10:14 AM
#4
Thread Starter
Fanatic Member
I just tried it on my linux parition, an it works. Something must have fooked up my setup. Arg.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|