| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | #2 (permalink) | ||||
| NamePros Regular Join Date: Feb 2006 Location: Montreal, Quebec, Canada
Posts: 324
![]() |
????: NamePros.com http://www.namepros.com/code/234407-php-switch-case.html <?php switch(id){ case 'news': //what you want for news in here. break; case 'about': //what you want on the about page. break; default: //what text you want to display for default. break; } ?> I'm gonna bet it hits default everytime. | ||||
| |