Código PHP:
Ver original
( ! ) SCREAM: Error suppression ignored for ( ! ) Notice: Trying to get property of non-object in C:\wamp\www\test\PHP-MySQL\Mysqli\mysql_result_fetch_array.php on line 26 Call Stack # Time Memory Function Location 1 0.0005 373248 {main}( ) ..\mysql_result_fetch_array.php:0 notFound
Aqui mi código.. :
Código PHP:
Ver original
//conexion a bdd $host="localhost"; $userbdd="root"; $pass=""; $schema="telmexge"; $mysqli = new mysqli($host,$userbdd,$pass,$schema); } //Hacemos query $id_user=1; $query="SELECT id_rol FROM user_rol WHERE id_user=?"; if ($sentencia = $mysqli->prepare($query)) { //ENVIAMOS LOS PARAMETROS $sentencia->bind_param('i', $id); //ESCAPAMOS $id= $mysqli->real_escape_string($id_user); /* ejecutar la sentencia */ $sentencia->execute(); if ($sentencia->errno) { echo "FAILURE!!! " . $sentencia->error(); } //RESULTADO EN ARRAY ASOCIATIVO $result = $sentencia->fetch(); if($result->num_rows <1) { echo "notFound"; }else { //EN ESTA PARTE NECESITO EN LUGAR DEL PRINT GUARDAR EN SESSION TODAS //LAS FILAS HAYADAS. } $sentencia->close(); }//end if prepare ?>
Les comento mi query me arroja los sig resultados:
id_rol
====
1
2
3
====
Saldos!!