hello,
I am wanting to show differnt data based on what the url
reason is to cut down on number of files nedded on server.
<?php
$planview_name = $_REQUEST['view'];
switch($planview_name)
{
case "a":
echo "view plan one";
break;
case "b":
echo "view plan 2";
break;
case "c":
echo "view plan 3";
break;
}
echo $planview_name;
?>
grate ok it works, but, this added whatever is in view="a" on end of echo. "View Plan onea"
thanks,
z