I have two pages, one of which displays the data from the database, and the other allows the user to edit it.
The record is retrieved using a user name and password, that works.
The record has a unique id, called id. I want to pass that id to the editing page
I have tried calling the editing page as follows:
edithotel.php3?id=$id
But the value of $id is blank
I have tried
include
global $id;
in edithotel.php3, and in the calling page hotel.php3, but this just gives me a format error.
I'm doing something wrong! Help!
Regards
Elizabeth Alderton