
April 28th, 2000, 05:26 PM
|
|
Contributing User
|
|
Join Date: Mar 2000
Location: Ontario, Canada
Posts: 498
  
Time spent in forums: < 1 sec
Reputation Power: 17
|
|
|
Well, for starts you can add
<?php_track_vars?> to the top line of your test.php3 document. This automatically sets variables based on the Query string (eg; test.php3?name=raaj sets $name to 'raaj').
Also, you might put a switch() inside the file to call different includes/functions.
eg;
<?php_track_vars?>
<?php
switch($name) {
case "raaj":
// call whatever you want for
// the name 'raaj' here
break;
... call as many case/break's as you want
}
?>
|