Jump to content

syntax for including variables within a href links


wright67uk

Recommended Posts

$query = mysql_query("SELECT name FROM business WHERE type ='Restaurant' ORDER BY name");
echo mysql_error();
while($ntx=mysql_fetch_row($query)) $nt[] = $ntx[0];
$i = -1;
foreach($nt as $value) { $i++;	
echo $nt[$i]."<br/>";}

 

Now im trying to swap the last line;

echo $nt[$i]."<br/>";}

 

for somthing more like

echo "<a href="$nt[$i].html">$nt[$i]</a>";}

 

My syntax seems to be shot to pieces, and i recieve errors.  any ideas welcome?

 

The error i receive is "Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' "

 

Many thanks.

This works really well, thankyou very much for your help. 

I can see one problem that Ive caused.

 

echo "<a href='" . $nt[$i] . ".html'>"  . $nt[$i] . "</a>";}

say for example if a result from my database was Fried Chicken, then I would output somthing like;

 

<a href="Fried Chicken.html">Fried Chicken</a>

 

Obviously this would produce a broken link.  Is there a way to factor out the space between Fried and Chicken within the link,

but to keep the space in the anchor text?

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.