Jump to content

Syntax for displaying query results as hyperlink.


mank1

Recommended Posts

Here's the code:

<?php
$con = mysql_connect("host","user","pass");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("theDB", $con);

$result = mysql_query("SELECT * FROM theTable");

while($row = mysql_fetch_array($result))
  {
  //$site = $row['siteName'];
  //$url = $row['siteURL'];
  //echo "<a href='$url'>$site[/url]";
  echo $row['siteName'] . " " . $row['siteURL'];
  echo "<br />";
  }
mysql_close($con);
?>

As is, the script returns, for example:
Adobe http://www.adobe.com

As you've already guessed, my problem is with the three lines that are currently commented out.
What is the proper syntax for the echo <a> tag?
Thanks.

[code]echo "<a href=\"$url\">$site[/url]";[/code]
Returned a blank page. It looks like it should work, and now I'm curious why it doesn't.
Did I mis-type something?

[code]echo "<a href='". $row['siteURL']. "'>". $row['siteName']. "</a><br />";[/code]
Returned a list hyperlinks. Right on.

I should've posted this yesterday. All the countless hours wasted.

Thanks again.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.