PLS help me

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Rangana
Forum Newbie
Posts: 6
Joined: Thu Sep 04, 2008 4:36 am

PLS help me

Post 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
Last edited by Rangana on Fri Sep 05, 2008 4:56 am, edited 1 time in total.
User avatar
jayshields
DevNet Resident
Posts: 1912
Joined: Mon Aug 22, 2005 12:11 pm
Location: Leeds/Manchester, England

Re: PLS help me

Post by jayshields »

You might need to look into sessions. Search the manual or this forum for more info.
User avatar
Sindarin
Forum Regular
Posts: 521
Joined: Tue Sep 25, 2007 8:36 am
Location: Greece

Re: PLS help me

Post by Sindarin »

<a href="showdata_tecnical.php?CID=rr">
in the next page:
$CID = $_GET['CID'];
echo "CID: $CID";
will output rr
User avatar
panic!
Forum Regular
Posts: 516
Joined: Mon Jul 31, 2006 7:59 am
Location: Brighton, UK

Re: PLS help me

Post by panic! »

I love these people who sign up...ask a question...and never come back or say thank you.
User avatar
Sindarin
Forum Regular
Posts: 521
Joined: Tue Sep 25, 2007 8:36 am
Location: Greece

Re: PLS help me

Post 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
User avatar
JAB Creations
DevNet Resident
Posts: 2341
Joined: Thu Jan 13, 2005 6:44 pm
Location: Sarasota Florida
Contact:

Re: PLS help me

Post 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.
Rangana
Forum Newbie
Posts: 6
Joined: Thu Sep 04, 2008 4:36 am

Re: PLS help me

Post by Rangana »

Thanks for all answers I don that thanks.
Post Reply