hello,
I want on my website that the URL shown in the navigator location stay ever the same as www.mydomain.com, even if i call www.mondomain.com/truc/script.php. It might be possible but i don't how to proceed to do that. Perhaps must i call every time the same script which will parse the url and act as a dispatcher.... I know some website which do that but i don't know how.
thanks for any help
kevin.
Yea, have one script do everything, or use frames.
thank's. This script can receive one argument which say which script must be call after but how do i call it ?? With header() function or include() ?? And when i have an html form how can i transfert arguments of the form to the other script ?
thank's for your help.
I'm not quite following you: are you going with frames, or not?
no i'm not going to use frames
thank's kevin.
OK, i gotcha:
You could do any number of things, but would this be acceptable to you:
index.php?somestring
switch($QUERY_STRING) { case "string1" : include(string1.php); break;
// and so on down the line where the include file is what you want?
}
ok, thank's for your help i'm going to do something like that.