2017-11-06 6 views
0

ich diesen Fehler bei der Ausführung Result.phpFatal error: Call to undefined function import_request_variables()

Fatal error: Call to undefined function import_request_variables()

Result.php

<HTML> 
    <HEAD> 
    <TITLE> This Result.php </TITLE> 
    <?php 
    import_request_variables("p","f_"); 
    ?> 
    </HEAD> 
    <body> 
    <?php 
    if($f_uname=="Ali" && $f_pass=="123") 
    { 
     echo ("Welcome <br/>\n"); 
    } 
    else 
    { 
     echo ("Invalid Username & Password!!"); 
    } 
    ?> 
    </body> 
    </HTML> 
+1

https://stackoverflow.com/a/36972088/4248328 –

+0

extrahieren ($ _ POST, EXTR _PREFIX_ALL, f); ist richtig ? – moh3en

Antwort

2

Nach php.net

Warning This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.

Verwandte Themen