Re: [PHP-DB] Hyperlinking to a new page

2003-10-09 Thread Jordan S. Jones
PROTECTED]> To: "Shiloh Madsen" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 09, 2003 4:48 PM Subject: Re: [PHP-DB] Hyperlinking to a new page City Name Shiloh Madsen wrote: Ok, I know this should be easy, but im just blanking on how to do it. I

Re: [PHP-DB] Hyperlinking to a new page

2003-10-09 Thread Cal Evans
script.php?key=value&key=value&key=value i.e. http://www.yourserver.com/yourscript.php?city=mobile&state=al or http://www.yourserver.com/yourscript.php?cityid=666 This will allow you to use $_REQUEST['city'] in the page you are calling to retrieve the city from the first example. You can also u

Re: [PHP-DB] Hyperlinking to a new page

2003-10-09 Thread Rob
MAIL PROTECTED] Sent: Thursday, October 09, 2003 3:51 PM Subject: Re: [PHP-DB] Hyperlinking to a new page I believe what you want to do is just add the variable onto the URL, like this... script.php?variable or script.php?variable&variable Does that help? Thanks, Robert Gillen

Re: [PHP-DB] Hyperlinking to a new page

2003-10-09 Thread Rob
I believe what you want to do is just add the variable onto the URL, like this... script.php?variable or script.php?variable&variable Does that help? Thanks, Robert Gillen http://www.GifArt.com - Original Message - From: Shiloh Madsen To: [EMAIL PROTECTED] Sent: Thursday, O

Re: [PHP-DB] Hyperlinking to a new page

2003-10-09 Thread Jordan S. Jones
City Name Shiloh Madsen wrote: Ok, I know this should be easy, but im just blanking on how to do it. I have a webpage where you put in a city name, and it queries a database of all the cities in the US and brings back all cities matching that name. This part works just fine. What I want to do now