Forum Moderators: coopster
while($query_data = mysql_fetch_array ($result) ) {
printf ("<tr><td width=250>%s %s </td><td width=250>%s %s </td></tr>\n", "ORG Name:",
$query_data [ "link_title" ] ,
"Web Address :". $query_data [ "http" ] . $query_data ["link_url"],"CLICK"."</a>");
}
This is the result:(instead of hiding the "href" and making it hot!)
<<<
Web Address :a href=http://www.flcb.org CLICK
>>>
["http] id by DB default: a href=http://www.
["link_url"] is the web address as: flcb.org
what do I miss
thanks
regards
Henry
Also, taking www. for granted is dangerous... none of my sites use it...
while($query_data = mysql_fetch_array ($result) ) {
printf ("<tr><td width=250>%s %s </td><td width=250>%s %s </td></tr>\n", "ORG Name:",
$query_data [ "link_title" ] ,
"Web Address :<". $query_data [ "http" ] . $query_data ["link_url"],"CLICK"."</a>");
}
SN