Ver Mensaje Individual
  #9 (permalink)  
Antiguo 24/10/2011, 10:44
Arkaitz
 
Fecha de Ingreso: agosto-2011
Ubicación: España
Mensajes: 445
Antigüedad: 13 años, 5 meses
Puntos: 89
Respuesta: no me ingresan los datos a la BD

Cita:
Iniciado por amils21 Ver Mensaje
Código PHP:
Ver original
  1. <?php
  2. function conectar()
  3. {
  4.     $conecta = @mysql_connect("localhost", "root", "");/*TALVES SEA LA ARROBA PUEVALO Y ME DICES YO LO HAGO ASI*/
  5.    
  6.         if (!$conexion){
  7.     die('No se pudo conectar: ' . mysql_error());    
  8.     }
  9.      
  10.     mysql_select_db("mi_db") os exit('no existe la base de datos');
  11. }
  12.  
  13. function desconectar()
  14. {
  15.     mysql_close($conecta);
  16. }
La décima línea sería:

Código PHP:
Ver original
  1. mysql_select_db("mi_db") or exit('no existe la base de datos');