what is wrong with this code:
when i do a $mysql = new sqlConnection("path.xml");
i get:
Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "path.xml" in /Applications/MAMP/htdocs/ebenezer/scripts/sqlconn.inc on line 11
Fatal error: Call to a member function children() on a non-object in /Applications/MAMP/htdocs/ebenezer/scripts/sqlconn.inc on line 13
the path.xml file is in the same directory as the phpclass
function __construct($fileName)
{
$xml = simplexml_load_file($fileName);
foreach($xml->children() as $child)
{
if ($child->getName() == "server")
$this->server = $child;
if ($child->getName() == "user")
$this->user = $child;
if ($child->getName() == "pass")
$this->pass = $child;
if ($child->getName() == "db")
$this->db = $child;
}//end foreach loop
}