Quote:
Originally Posted by Exero
PHP Code:
<?php
if($action == "") {
// Main page coding here
echo("Welcome");
}
elseif($action == "news") {
// News coding here
echo("News");
}
elseif($action == "about") {
// About coding here
echo("About");
}
elseif($action == "search") {
// Search coding here
echo("Search");
}
?>
|
I think Exero was just trying to show us how to write a sophisticated if statements, which in my opinion could be a great topic you can write about MindTrix... By the way great tutorial, although I found ONE mistake;
You wrote;
Code:
Example
"vBulletin"."Rules"
Would show up as
"vBulletin Rules"
Should'nt it be;
Code:
"vBulletin"."Rules"
Would show up as
"vBulletinRules"
Also how would this show on a browser;
Code:
Here is an example
$userage = 50;
print "The users age in days is ".($userage*365)." days";
Notice the ( . ) symbol connecting everything together.
Gread job, keep it up