2009-08-03 8 views
2

私は致命的なエラー:存在しないクラスをインスタンス化できません:にSimpleXMLElement

$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; 
} 

このPHPスクリプトを使用していると私は、これが最も可能性が高いことSimpleXML拡張モジュールを意味し、このエラー

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

答えて

関連する問題