Click here to Skip to main content
15,919,778 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: how to delete Cookies Pin
Guffa2-Apr-07 6:05
Guffa2-Apr-07 6:05 
Questionweb service Pin
habibmulla2-Apr-07 0:25
habibmulla2-Apr-07 0:25 
AnswerRe: web service Pin
badgrs2-Apr-07 2:57
badgrs2-Apr-07 2:57 
QuestionASPX In Inner HTML Tag Pin
L Viljoen2-Apr-07 0:19
professionalL Viljoen2-Apr-07 0:19 
AnswerRe: ASPX In Inner HTML Tag Pin
Paddy Boyd2-Apr-07 0:44
Paddy Boyd2-Apr-07 0:44 
GeneralRe: ASPX In Inner HTML Tag Pin
L Viljoen2-Apr-07 0:46
professionalL Viljoen2-Apr-07 0:46 
GeneralRe: ASPX In Inner HTML Tag Pin
Paddy Boyd2-Apr-07 0:50
Paddy Boyd2-Apr-07 0:50 
QuestionCreating a New Site Pin
Subramaniam s.V.1-Apr-07 22:17
Subramaniam s.V.1-Apr-07 22:17 
QuestionVisual Source Safe (VSS) Pin
Ahuja.bangalore1-Apr-07 21:01
Ahuja.bangalore1-Apr-07 21:01 
Questioncreating a table Pin
Oga M1-Apr-07 20:33
Oga M1-Apr-07 20:33 
AnswerRe: creating a table Pin
L Viljoen2-Apr-07 0:32
professionalL Viljoen2-Apr-07 0:32 
Questionpop up windows in .asp pages Pin
starri001-Apr-07 1:06
starri001-Apr-07 1:06 
AnswerRe: pop up windows in .asp pages Pin
Hesham Amin1-Apr-07 6:43
Hesham Amin1-Apr-07 6:43 
QuestionKeeping the values of radio button during paging [modified] Pin
enggars31-Mar-07 7:45
enggars31-Mar-07 7:45 
AnswerRe: Keeping the values of radio button during paging Pin
eggsovereasy2-Apr-07 7:47
eggsovereasy2-Apr-07 7:47 
QuestionHow to force a page to post back from another page? Pin
r_jaz31-Mar-07 2:48
r_jaz31-Mar-07 2:48 
AnswerRe: How to force a page to post back from another page? Pin
Guffa31-Mar-07 4:37
Guffa31-Mar-07 4:37 
Questionphp page being loaded twice Pin
john3431-Mar-07 2:19
john3431-Mar-07 2:19 
AnswerRe: php page being loaded twice Pin
Bradml31-Mar-07 2:35
Bradml31-Mar-07 2:35 
AnswerRe: php page being loaded twice Pin
Bradml31-Mar-07 4:18
Bradml31-Mar-07 4:18 
GeneralRe: php page being loaded twice Pin
john3431-Mar-07 8:13
john3431-Mar-07 8:13 
GeneralRe: php page being loaded twice Pin
Bradml31-Mar-07 18:31
Bradml31-Mar-07 18:31 
GeneralRe: php page being loaded twice Pin
john341-Apr-07 3:44
john341-Apr-07 3:44 
GeneralRe: php page being loaded twice Pin
Bradml1-Apr-07 3:56
Bradml1-Apr-07 3:56 
That is no problem. The easiest way to do this in PHP is through session variables.

Basically it relies on cookies but stores the data on the server side. This is not a perfect way to do it but unless you use databases it is very good.

Here is the gist of it:

First Page:
<?php
//Same rules apply for cookies as headers. Nothing above the <?php tags

session_start(); //Start the session. This needs to be at the top of every page that uses the session data.

$_SESSION["example"] = "Hello World"; //Assign the "example" variable to the session array.

?>

<a href="secound_page.php">Click here to go the secound page.</a>
Secound Page:
<?php
//Same rules apply for cookies as headers. Nothing above the <?php tags

session_start();

echo $_SESSION["example"]; //If this works it should print "Hello World"

?>

You can find more out at: http://www.php.net/manual/en/ref.session.php[^]




Brad
Australian

- Captain See Sharp on "Religion"

any half intelligent person can come to the conclusion that pink unicorns do not exist.

Questionbinary data asp Pin
Nilesh Hapse30-Mar-07 23:53
Nilesh Hapse30-Mar-07 23:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.