Re: passing data thru link




"Christoph Burschka" <christoph.burschka@xxxxxxxxxxxxxx> wrote in message
news:4slcr1F10bna4U1@xxxxxxxxxxxxxxxx
Gaga schrieb:
Hi!

How to transfer exited data from main to edit page. ?
I have one page with listed users ( from the db ) and you can click on
each
user.
After that you will be transfered to edit page.There you can edit the
user
you have choose.

The problem is that i dont know how to define the link ( with user
data )
from the main page, and then how to check this data on the edit page (
so i
can be sure that im making edit on the right user ).

Thank you !



Use a GET parameter.

Your link should look something like this:

<a href="user_edit.php?id=33">edit</a>

In the script user_edit.php, the variable $_GET['id'] will be set to 33.
You can then use this value to get the required user from the database.

--
Christoph
-----------------------------------------------------
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.





.



Relevant Pages

  • Re: passing data thru link
    ... Gaga schrieb: ... How to transfer exited data from main to edit page. ... I have one page with listed users and you can click on each ...
    (alt.php)
  • passing data thru link
    ... How to transfer exited data from main to edit page. ... I have one page with listed users and you can click on each ... can be sure that im making edit on the right user). ...
    (alt.php)