Comunidad de diseño web y desarrollo en internet online

Necesito ayuda con error mysql_fetch_array()

Citar            
MensajeEscrito el 06 Ago 2014 03:50 pm
hola a todos, mi pagina me esta generando este error.

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/u809174526/public_html/buypixel.php on line 7.

aqui les pego el codigo php, para que me puedan ayudar con este error...

<?php
include("header.php");
include("inner_header.php");
include_once("includes/configure.php");
include("includes/database_tables.php");
$q_page_data = mysql_query("select * from " . TABLE_BUYPIX_PAGE . " where id=1");
$f_page_data = mysql_fetch_array($q_page_data);
?>
<table align="center" width="95%" height="1000" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="top"><?php echo $f_page_data['page_code']; ?>
</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td><input type="button" name="buypix" value="Buy Pixels" class="button" onClick="javascript:window.location='index.php'"></td>
</tr>
</table>


<?php
include("inner_footer.php");
include("free_footer.php");
?>

Por kokesoft

13 de clabLevel



 

chrome
Citar            
MensajeEscrito el 06 Ago 2014 04:47 pm
Lo más probable es que tengas un error al ejecutar la sentencia SQL en la función mysql_query().

Prueba lo siguiente:

Código PHP :

$q_page_data = mysql_query("select * from " . TABLE_BUYPIX_PAGE . " where id=1");
if (mysql_errno() != 0) {
    echo mysql_errno() . ": " . mysql_error() . "<br />";
    return;
}
$f_page_data = mysql_fetch_array($q_page_data);

Siembre debes controlar el error devuelto por cada vez que ejecutes algo en la base de datos.

Por DriverOp

Claber

2510 de clabLevel



 

opera

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.