Page 2 of 2

Posted: Fri Apr 02, 2004 5:05 pm
by markl999
Then you need $_GET['entryid'] not $_POST['entryid']

Posted: Fri Apr 02, 2004 5:05 pm
by Illusionist
then you would use $_GET['entryid']
EDIT: beat me to it!

Posted: Fri Apr 02, 2004 5:07 pm
by Illusionist
And also, seeker, if you are trying to test to ake sure $entryid isn't empty with if($entryid=="$entryid"), then i highly suggest doing this instead: if(!empty($entryid))

Posted: Fri Apr 02, 2004 5:11 pm
by seeker2921
Awsome, I works now. Thank you.. Could you explain why the way I did the if statment didn't work so I learn form my mastakes?