“Chamada para função indefinida mysql_query ()” Respostas de código

Chamada para função indefinida mysql_connect ()

Try checking to see if the PHP MySQL extension module is being loaded:

<?php
    phpinfo();
?>

If it's not there, add the following to the php.ini file:

extension=php_mysql.dll

Save and Restart You Apache HTTP Server
Ankur

Chamada para função indefinida mysql_query ()

$sql = mysql_query("SELECT * FROM login WHERE username = '".$_POST['username']."' and password = '".md5($_POST['password'])."'");
$row = mysql_num_rows($sql);
Motionless Mole

Respostas semelhantes a “Chamada para função indefinida mysql_query ()”

Perguntas semelhantes a “Chamada para função indefinida mysql_query ()”

Procure respostas de código populares por idioma

Procurar outros idiomas de código