good day,
i have this problem for awhile now and still can't find the answer (wish me luck here right now).
The concept is to have an anchor link with a value from MYSQL then pulling it out to put it in another page.
here is my code: (sorry about the code, im begging to the expert, just a newbie here).
once the title link hits, the value will get and post it to "listings page". code will be like this...
Search page
this will be the outcome instead of the code is correct
Listings page
Title: List Category 1
City: City
State: State
**i used to try the PHP session but i seems the last table of MYSQL is always be visible and not the selected category which category has 10 list of it. Hope some one can help me here.. thanks in advance.
i have this problem for awhile now and still can't find the answer (wish me luck here right now).
The concept is to have an anchor link with a value from MYSQL then pulling it out to put it in another page.
here is my code: (sorry about the code, im begging to the expert, just a newbie here).
Code:
<li>» <a href="listings.php"><?=$rows['title'];?></a> - <?=$rows['city'];?>, <?=$rows['state'];?></li>
Search page
Code:
<a href="listings.php">List Category 1</a> - City, State
Listings page
Title: List Category 1
City: City
State: State
**i used to try the PHP session but i seems the last table of MYSQL is always be visible and not the selected category which category has 10 list of it. Hope some one can help me here.. thanks in advance.
Comment