Re: passing data thru link




Thank you for replay but there is just one small problem...
On the main page i have users listed from the db and this is the way im
displaying them in the table:
<?php echo $row_dbUsers['id']; ?>
<?php echo $row_dbUsers['name']; ?> etc.

If i make <? <a href="user_edit.php?id=$row_dbUsers['id']">edit</a> ?> i
get
parse error.


<?PHP
echo "<a href='user_edit.php?id=".$row_dbUsers['id']."'>edit</a>";
?>


.