Re: passing data thru link
- From: Michael Fesser <netizen@xxxxxx>
- Date: Thu, 23 Nov 2006 23:50:10 +0100
..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
.
- Follow-Ups:
- Re: passing data thru link
- From: MS
- Re: passing data thru link
- References:
- passing data thru link
- From: Gaga
- Re: passing data thru link
- From: Christoph Burschka
- Re: passing data thru link
- From: Gaga
- Re: passing data thru link
- From: MS
- passing data thru link
- Prev by Date: webmaster wanted
- Next by Date: Re: Lost formatting in browser 'view source'
- Previous by thread: Re: passing data thru link
- Next by thread: Re: passing data thru link
- Index(es):
Relevant Pages
|