disabling errors

 
Post new topic   Reply to topic    Aprelium Forum Index -> PHP
View previous topic :: View next topic  
Author Message
blackarib
-


Joined: 19 Jun 2004
Posts: 48

PostPosted: Mon Sep 20, 2004 4:33 pm    Post subject: disabling errors Reply with quote

I am making a web page with themes set by cookies with a different file of variables loaded by what is contained in a cookie. I am using the switch statemant with the cokie the name and the theme is the value of the cookie. I have got it working but my only problem is that if there is no cookie it displays an error message saying thet that veriable dosn't exist.Is there any way to disable this for this one bit of script or is there a way around it.
My current code I have made is
Code:
<?php
switch ($_COOKIE["theme"])
{
case "grey":
   require ("theme=grey.php");
   break;
case "gold":
   require ("theme=gold.php");
   break;
default:
   require ("theme=grey.php");
}
?>
Back to top View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
TRUSTAbyss
-


Joined: 29 Oct 2003
Posts: 3752
Location: USA, GA

PostPosted: Mon Sep 20, 2004 11:16 pm    Post subject: Reply with quote

Add the following after the opening PHP tag.

Code:

ini_set('display_errors', 0);
Back to top View user's profile Send private message Visit poster's website
blackarib
-


Joined: 19 Jun 2004
Posts: 48

PostPosted: Tue Sep 21, 2004 4:27 pm    Post subject: Reply with quote

thanks, this has been really annoying me
Back to top View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
TRUSTAbyss
-


Joined: 29 Oct 2003
Posts: 3752
Location: USA, GA

PostPosted: Wed Sep 22, 2004 1:00 am    Post subject: Reply with quote

No problem , what are PHP programmers for :)
Back to top View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> PHP All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group