I have a php web page that I am writing and I want it to look for a file called debug.cfg and then send debug info to the screen. If it cant find the file I want it to just run normally. So i look for the file with
require_once "debug.cfg"
But when the file dosent exist I get warnings on the screen. Is there anyway I can accomplish this without getting all the warnings on the screen saying it cant find the file?
