Re: passing data thru link
- From: "Gaga" <rg2006@xxxxxxxxxxx>
- Date: Thu, 23 Nov 2006 12:29:44 +0100
"Christoph Burschka" <christoph.burschka@xxxxxxxxxxxxxx> wrote in message
news:4slcr1F10bna4U1@xxxxxxxxxxxxxxxx
Gaga schrieb:each
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
useruser.
After that you will be transfered to edit page.There you can edit the
data )you have choose.
The problem is that i dont know how to define the link ( with user
so ifrom the main page, and then how to check this data on the edit page (
-----------------------------------------------------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.
.
- 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
- passing data thru link
- Prev by Date: Re: passing data thru link
- Next by Date: PHP downloading files
- Previous by thread: Re: passing data thru link
- Next by thread: Re: passing data thru link
- Index(es):
Relevant Pages
|