
January 21st, 2005, 06:46 PM
|
|
Registered User
|
|
Join Date: Jan 2005
Posts: 3
Time spent in forums: 1 h 2 m 20 sec
Reputation Power: 0
|
|
|
how to make the database value as a hyperlink
I have made a database of a recruitment agency by using MySQL. i m now making its wap site by using wml and php. I have picked the "jobtitle" from the database and shown on wap screen. now i want to make each "jobtile" a link by pressing which i can show all the other related fields of that record like salary,description,address,phone,email etc of that particular job. but i don't know how to do this.
part of coding is
$result = mysql_query("select jobtitle, reference from `ATWORK`", $db);
while ($row = mysql_fetch_array($result))
{
echo("<left><b>$row[0]</b></left>");
}
please help me to do this.
thanks.
waiting for response.
|