Else case?

Shadow121

Member
Messages
901
Reaction score
0
Points
16
I have a switch system for navigation on a site i'm working with and would like to know if there was a way to put like in visual basic or C#.
Code:
case else:
//require 404 file.
break;
Or such things =]
 

marshian

New Member
Messages
526
Reaction score
9
Points
0
I think this is the code you need:

PHP:
switch($var) {
  case "value1":
    //do stuff
    break;
  case "value2":
    //do other stuff
    break;
  default:
    require("404.php");
}
 

Shadow121

Member
Messages
901
Reaction score
0
Points
16
thats what i have but for default i need the news to show. But i might be able to set up the htaccess to on 404 redirect to /errors/error number/
 

LHVWB

New Member
Messages
1,308
Reaction score
0
Points
0
thats what i have but for default i need the news to show. But i might be able to set up the htaccess to on 404 redirect to /errors/error number/

Whats wrong with including the file?

Is it having any problems?
 
Top