Page 1 of 1

PLS help me

Posted: Thu Sep 04, 2008 4:50 am
by Rangana
I want to pass value to the next page how it doing pls tell me.

I create variable $cellID in Sitedata.php file. I want to get to that value to Sitedetails.php page. When it's load.
eg:- sitedetails.php?CID= rr like
plase tell how to write that code for this
<a href="showdata_tecnical.php">

Thank for all the people send me to answers.Lot of thank for all

Re: PLS help me

Posted: Thu Sep 04, 2008 5:21 am
by jayshields
You might need to look into sessions. Search the manual or this forum for more info.

Re: PLS help me

Posted: Thu Sep 04, 2008 5:53 am
by Sindarin
<a href="showdata_tecnical.php?CID=rr">
in the next page:
$CID = $_GET['CID'];
echo "CID: $CID";
will output rr

Re: PLS help me

Posted: Thu Sep 04, 2008 8:14 am
by panic!
I love these people who sign up...ask a question...and never come back or say thank you.

Re: PLS help me

Posted: Thu Sep 04, 2008 8:32 am
by Sindarin
I love these people who sign up...ask a question...and never come back or say thank you.
it's okay, I'm just glad it worked for him. :D

Re: PLS help me

Posted: Thu Sep 04, 2008 8:49 am
by JAB Creations
panic! wrote:I love these people who sign up...ask a question...and never come back or say thank you.
This is why I rarely participate in low count OP threads unless they are clearly sticking around or have a super simple question.

Re: PLS help me

Posted: Fri Sep 05, 2008 4:59 am
by Rangana
Thanks for all answers I don that thanks.