view specific id record issue

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

Post Reply
User avatar
Celauran
Moderator
Posts: 6427
Joined: Tue Nov 09, 2010 2:39 pm
Location: Montreal, Canada

Re: view specific id record issue

Post by Celauran »

Have you checked the value of $_SESSION['user']?
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Re: view specific id record issue

Post by Christopher »

ianhaney wrote:No I have not checked the value of that yet, how would I do that, sorry
Glad you solved the problem. A good way to display the contents of any variable is something like this:

Code: Select all

echo "<pre>" . print_r($var, 1) . "</pre>";
(#10850)
Post Reply