Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\red\privados\config.php:2) in C:\AppServ\www\red\gustar.php on line 22
y mi codigo gustar.php es este:
Código PHP:
que puede ser este error nose que es lo que tengo mal, gracias un saludo. Ver original
<?php $nombre =$_SESSION['logueado_nombre']; $id_usuario=$_SESSION['logueado_id']; include('privados/config.php'); $post=$_GET['post']; $gusta=$_GET['gustar']; switch($gusta) { case "1"; $inset=mysql_query("insert into megusta (id, id_logueado, id_post, fecha, gusta)values('null','$id_usuario','$post','$fecha','$gusta')",$conexion); break; case "0"; $inset=mysql_query("DELETE from megusta WHERE id_logueado='$id_usuario' and id_post='$post'",$conexion); break; } ?>