I am create a plugin. Is a page. I have this error
the error is: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\Users\jose\Desktop\ZMWS\_web.zmwsc\e107\pagina.php on line 26
in this page (pagina.php) The file is in e_BASE
********************************************
line 10 = require_once("e107_config.php"); line 11 = define("SERVIDOR", $mySQLserver); line 12 = define("USUARIO", $mySQLuser); line 13 = define("CONTRASEÑA", $mySQLpassword); line 14 = define("BASEDEDATOS", $mySQLdefaultbd); line 15 = define("PREFIJOBD", $mySQLprefix);
line 17 = $CONEXION=mysql_connect("".SERVIDOR."","".USUARIO."","".CONTRASEÑA.""); line 18 = $BD="".BASEDEDATOS.""; line 19 = $SQL_PAGINA="select * from ".PREFIJOBD."articulo order by id_articulo desc";
line 21 = $RES_PAGINA=mysql_db_query($BD,$SQL_PAGINA,$CONEXION);
line 26 = while ($REG_PAGINA=mysql_fetch_array($RES_PAGINA)) // Here is the bug line 27 = { line 28 = echo $REG_PAGINA["titulo_articulo"]; line 29 = }