Ver Mensaje Individual
  #12 (permalink)  
Antiguo 02/07/2011, 07:09
yo_mismita
 
Fecha de Ingreso: noviembre-2007
Mensajes: 26
Antigüedad: 17 años, 1 mes
Puntos: 0
Respuesta: variables de sesión

Este es mi código en conexion.php:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>Conectando a la base de datos 'galeriaarte'...</title>
  5. </head>
  6.  
  7.  
  8. [HIGHLIGHT="PHP"]<?php
  9.  
  10. $host = "localhost";
  11.  
  12. $usuario = "al073529";
  13.  
  14. $password = "galeria";
  15.  
  16. $bd = "galeriaarte";
  17. $conexion = mysql_connect($host, $usuario, $password);
  18. if (mysql_select_db($bd, $conexion))
  19.     echo "hola, al fin he entrado a la base de datos" . "<br><br>";
  20. else
  21.     echo "adios";
  22. ?>
</body>
</html>[/HIGHLIGHT]

Además, he probado a poner ob_start(); a continuación de session_start(); y nada... sigo con las mismas...

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\wamp\www\conexion.php:10) in C:\wamp\www\probando_sesion.php on line 6

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\wamp\www\conexion.php:10) in C:\wamp\www\probando_sesion.php on line 6

menu artista



El código se que se puede mejorar... pero de momento sólo pido que funcione. Con más tiempo mejoraré el código... Gracias!