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.

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.