|
PHP Sessions
|
|
09-30-2011, 01:19 PM
|
|||
|
|||
|
The Following Script Is example of the PHP sessions Function:
<?php session_start(); // store session data $_SESSION['views']=1; ?> <html> <body> <?php //retrieve session data echo "Pageviews=". $_SESSION['views']; ?> </body> </html> |
|||
|
09-30-2011, 02:52 PM
|
|||
|
|||
RE: PHP Sessions
(09-30-2011 01:19 PM)manik90 Wrote: The Following Script Is example of the PHP sessions Function: its right code n algorithm. but i think pageview is not using $_SESSION. AFAIK pageview using database, example. PHP Code: <?phpi think it for page view case. this is for $_SESSION function in right case. PHP Code: <?phpcorrect me if i'm wrong |
|||
|
« Next Oldest | Next Newest »
|
| User(s) browsing this thread: |
| 1 Guest(s) |






