[PHP-DB] Hyperlinking to a new page

2003-10-09 Thread Shiloh Madsen
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 is to create a hyperlink for

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

2003-10-09 Thread Jordan S. Jones
a href=/location/to/page.php?city_id=2342343City Name/a 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.

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

2003-10-09 Thread Rob
, October 09, 2003 3:41 PM Subject: [PHP-DB] Hyperlinking to a new page 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

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

2003-10-09 Thread Rob
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?variablevariable Does that help? Thanks, Robert Gillen http

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

2003-10-09 Thread Cal Evans
: Shiloh Madsen To: [EMAIL PROTECTED] Sent: Thursday, October 09, 2003 3:41 PM Subject: [PHP-DB] Hyperlinking to a new page 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

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

2003-10-09 Thread Jordan S. Jones
[EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, October 09, 2003 4:48 PM Subject: Re: [PHP-DB] Hyperlinking to a new page a href=/location/to/page.php?city_id=2342343City Name/a Shiloh Madsen wrote: Ok, I know this should be easy, but im just blanking on how to do it. I have