If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
the variable $action doesn't exist because global variables are turned off by default. Try:
[php]
<?
$action = $_GET['action'];
if ($action == "uno") {
echo("Page One");
}
else if ($action == "dos") {
echo("Page Two");
}
else {
echo("No Action.");
}
?>
[/php]
Just who are Britain? What do they? Who is them? And why?
I had no idea about the global variables being turned off for OSX, but have read about that in regards to security concerns. Anyway, it worked perfectly!