I've installed Apache2.2.4 & php5.2.3 in my windows xp, evry thing is going perfect but when I want to transfer a session variable to another form its not tranfering.......plz any body help me on this regard. will I have to configer any file....its urgent for me..

Recommended Answers

All 9 Replies

thanx 4 response

try using session_start()

You should put session_start() In each page in the first, and write a variable contains the session... EX:

session_start();
$_SESSION="NAME";
$Variable=$_SESSION;


It's Easy

I have a page that shows job posings and the recordset contains the job title called Position
on my first page I start the session, name the session and give it the value of the recordset like this:

session_start();
$_SESSION= $row_rsposition;


on the next page, I once again start the session and echo it to the screen to test it like so:

session_start();
echo $_SESSION;

you can further assign it to values on the form like this:
(this is a checkbox element)
<input name="Administrative_Support_Assistant" type="checkbox" id="Administrative_Support_Assistant" value="Y" <? if (!$_POST && (!(strcmp($_SESSION, "Administrative Support Assistant")))) { echo "checked=\"checked\"";} ?>/>

for a text box use something like this:
<input name="Position" type="text" id="Position" value=" <? echo $_SESSION;?>"


hope this helps

Now I've installed XAMPP but still facing problem on session:
e.g. file1.php

<?
session_start();
session_register("n");
<body><form action=file2.php method=post>
..........
<input type=text name=n>
<input type=submit value=submit>
</body>
?>

file2.php

<?
session_start();
session_register("n");

print"name=.$n";

?>

the value of "n" is not printing on file2.php ..................if there is anything wrong in this code, plz give me some correct one........

First off, the code you posted is not even valid code. You have php and html mixed in together and no end form tag to boot. Have you even attempted to run this code yourself?

As far as session, you have not set the value of 'n' in the session. In your code, 'n' is a post variable. If you want it in $_SESSION[] you need to set the value yourself. If you only need it the one time, then just read it from $_POST[]. If it needs to persist, set it in $_SESSION[].

It is fairly obvious that you are not reading any of the tutorial links that were posted, but just expecting people to write the code for you. You need to take the time to read and learn from the tutorials and php manual as well.

thanx for the suggestion......i got it.

Are you sure to have session_start(); at the first line of your page

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.