Hello,
I have a questions,
I have 5 web pages that contain a web registration form,
the data is stored in a mysql database.
I want to do something like this:
page1.php generates $id=1
page2.php generates $id=2
.....
page5.php generats $id=5
my script will do something like this
switch ($id) {
case 1
do something;
case 2
do somethingelse;
.....
}
how can I make make page1.php - page5.php generate the id`s ?
If somebody has an example, it would be very appreciate.
PS Excuse my english, I know its not perfect and I hope you understand what I need.
Thakns a lot !