[solucionado] php
tengo varios errores en mi pagina quiero ver si me pueden ayudar
1: mysql_query(): supplied argument is not a valid MySQL-Link resource in /home/a3878987/public_html/index.php on line 7
2: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/a3878987/public_html/index.php on line 8
1: mysql_query(): supplied argument is not a valid MySQL-Link resource in /home/a3878987/public_html/index.php on line 7
2: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/a3878987/public_html/index.php on line 8
<?
include_once "conexion.php";
function comprobar_online(){
$useronline=$_COOKIE["user"];
$sqlonline= 'SELECT user FROM usuarios where user=$useronline';
$resultado= mysql_query($sqlonline, $con);
if (mysql_fetch_array($resultado) == ''){
header('../login.php');
}
}
comprobar_online();
?>
0No hay comentarios