Posted by Michael Fesser on 11/23/06 22:50
..oO(MS)
><?PHP
>echo "<a href='user_edit.php?id=".$row_dbUsers['id']."'>edit</a>";
>?>
Any reason why you use concatenation instead of embedding the variables
directly into the string?
echo "<a href='user_edit.php?id=$row_dbUsers[id]'>edit</a>";
or
echo "<a href='user_edit.php?id={$row_dbUsers['id']}'>edit</a>";
Micha
[Back to original message]
|