May 23, 2013
How to pass value from page to another page without using SESSION OR GET
Bhavesh Vaghela’s Question:
index.php page
: here I want to display successfully added record message , coming from add.php page
add.php page
: here I have written insert code , if data successfully inserted it will redirect to index.php page then message will be display on index.php page
But I dont want to pass in$_SEESSION
or $_GET
,
Without $_SEESSION
or $_GET
is it possible ?