Jump to content

php coding for an html link


not_terry

Recommended Posts

I have the following line of php to display a page.
 
echo "<td><a href='hotels-in-sharm-el-sheikh-egypt-with%20roadmaps-maps-locations-and%20landmarks-diving-boat-trips-excursions.php?q=" . $row['name'] . "'>More Information</a></td>";
            

the code works but my editor displays the line as follows.....

 
echo "<td><a href='hotels-in-sharm-el-sheikh-egypt-with%20roadmaps-maps-locations-and%20landmarks-diving-boat-trips-excursions.php?q=" . $row['name] . "'>More Information</a></td>";
 
somehow the editor is getting confused between the php and html and as you can see the variable name is split into two colours.  Normally this would indicate a syntax error.  Can anyone correct the syntax or give me a simpler way of creating the link 
 
Thanks
            

 

Link to comment
https://forums.phpfreaks.com/topic/278431-php-coding-for-an-html-link/
Share on other sites

echo "<td><a href='hotels-in-sharm-el-sheikh-egypt-with%20roadmaps-maps-locations-and%20landmarks-diving-boat-trips-excursions.php?q=" . $row['name'] . "'>More Information</a></td>";
It looks fine in our syntax highlighter. Get a better editor.

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.