Quote:
Originally Posted by Hex_legend
I have a page editprofile.php
In this page, I have sublinks..
interests
name
personality
comments
etc
How would I do:
editprofile.php?do=interests
editprofile.php?do=name
editprofile.php?do=personality
editprofile.php?do=comments
etc?
|
Code:
if ($_REQUEST['do'] == "interests")
{
code here
}
if ($_REQUEST['do'] == "name")
{
code here
}
and so on in your editprofile.php file. Or am I not understanding what you are wanting?