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