Log in

View Full Version : How to assign ?do=


Hex_legend
06-28-2008, 04:18 PM
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?

PaulSonny
06-28-2008, 04:26 PM
You on msn anymore?

I'll help on there?

Thanks, Paul.

Hex_legend
06-28-2008, 04:28 PM
ukwam@live.com

Marco van Herwaarden
06-29-2008, 08:36 AM
Common guys. Please help on the forum so others can also benefit from the solution.

Asking to contact by IM should only be done/needed on Paid Requests.

Boofo
06-29-2008, 08:45 AM
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?



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?