Chris
Chris

Reputation: 33

Fatal error: Cannot instantiate non-existent class: simplexmlelement

I'm using this php script

$error = false;
if(isset($_POST['login'])){
    $username = preg_replace('/[^A-Za-z]/', '', $_POST['username']);
    $password = md5($_POST['password']);
    if(file_exists('users/' .$username . '.xml')){
        $xml = new SimpleXMLElement('users/' .$username . '.xml', 0, true);
        if($password == $xml->password){
            session_start();
            $_SESSION['username'] = $username;
            header('Location: agis-employees.html');
            die;
        }
    }
    $error = true;
}

And I end up with this error

Fatal error: Cannot instantiate non-existent class: simplexmlelement in /home/virtual/site250/fst/var/www/html/employeeportal/index.php on line 7

Upvotes: 2

Views: 3498

Answers (1)

karim79
karim79

Reputation: 342665

This most likely means that the SimpleXML extension is not enabled/present in your PHP installation. You can verify this by executing phpinfo() and looking for 'SimpleXML'. See:

http://www.php.net/manual/en/simplexml.installation.php http://www.php.net/manual/en/book.simplexml.php

Upvotes: 5

Related Questions