$my_venue has data with space. For example= "nana nono". when I hoover to the link it gets cut off by the space. it works ok if there is no space.
<tr onmouseover="mouse_event(this, 'hlt');" onmouseout="mouse_event(this, '');">
<?php
$my_venue= $row['name'];
echo "<td><a href= http://x.x.x.x:xx/JUNK/search_results.php?user-val=&venue-val=$my_venue®ion-val=&lhversion-val=&releaseversion-val=&testtype-val=&api-val=&rate-val=&journaldate-val=&comments-val=&date-val=&record=%25>{$row['name']} </a></td>";
echo "<td>{$row['region']} </td>";
Oh BTW, I need the space because I need to pass this info to the DB and in the DB the data does have the space
{$row['name']} </a>and['region']} </td>, see what that does.