Código PHP:
protected function getSql($clave)
{
if(isset($_POST[$clave]) && !empty($_POST[$clave])){
$_POST[$clave] = strip_tags($_POST[$clave]);
if(!get_magic_quotes_gpc()){
$_POST[$clave] = mysql_real_escape_string($_POST[$clave], mysql_connect(host, user, pass));
}
return trim($_POST[$clave]);
}
}
Into errorHandler() at line 15 ---ERRNO--- 8192 ---ERRSTR--- mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead,
en si trabajo con php PDO y utilizo singleton para la conexión
Código PHP:
$singleton->_basededatos = new basededatos(API, HOST, DB, USER,PASS, CHARST);
agradezco su ayuda ya que estoy comenzando a programar en php