Help with viewing blog entrys via archive page..

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

User avatar
markl999
DevNet Resident
Posts: 1972
Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)

Post by markl999 »

Then you need $_GET['entryid'] not $_POST['entryid']
Illusionist
Forum Regular
Posts: 903
Joined: Mon Jan 12, 2004 9:32 pm

Post by Illusionist »

then you would use $_GET['entryid']
EDIT: beat me to it!
Illusionist
Forum Regular
Posts: 903
Joined: Mon Jan 12, 2004 9:32 pm

Post 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))
seeker2921
Forum Contributor
Posts: 120
Joined: Sat Mar 22, 2003 7:10 pm
Location: Wiesbaden Germany
Contact:

Post 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?
Post Reply