Ver Mensaje Individual
  #7 (permalink)  
Antiguo 24/10/2011, 10:42
vitocourt
 
Fecha de Ingreso: mayo-2009
Mensajes: 17
Antigüedad: 15 años, 9 meses
Puntos: 0
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. }
no me ha servido.