Here is my code there is plenty more but these work independently
echo $row['Queue'];
echo "<a href=\"modifyp.php?id=" . $row['id1'] . "\">Modify</a>";
what I want to do is this
echo "<a href=\"modifyp.php?id=" . $row['id1'] . "\">$row['Queue']</a>";
this doesn't work and gives a syntax error. any tips on how to get this to work?
thanks!