Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
sessions in php
Name: pari Date: March 17, 2005 at 01:11:43 Pacific OS: Windows XP proff CPU/Ram: 256 MB
Comment:
I am new to PHP. i have a problem using sessions.I had used sessions in my PHP code.Now when i bookmark a page from my website and close the site without logging out and reopen that page from "favorites" it displays the page without asking for Login.i want to validate that, please help me with a possible solution for it .
Summary: I am facing lot of problem in registering the session in php 4.3.11.I am using $_session['var']=$var_name; It's taking the value in var also.But it's not registering the session.In the next page i am ...
Summary: Here's a simple hit counter in PHP: <?php //Path to counter file $file = "count.dat"; //Get number of hits at the moment $counter = file_get_contents($file); //Add one to this number $counter++; //...
Summary: DrS- No...If going to the URL places a cookie on the user's computer, then the PHP way I mentioned won't work. This is because the server is the one making the request, and the shopping cart server d...