Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/11/2010, 11:53
gordot
 
Fecha de Ingreso: febrero-2010
Ubicación: cba
Mensajes: 203
Antigüedad: 14 años, 2 meses
Puntos: 16
Respuesta: Como ingresar registros en mysql

para mi el problema esta cuando te conectas a las base de datos..intenta de esta forma:


Código PHP:

<?
    $SERVIDOR 
"localhost";
    
$USUARIO  "root";
    
$PALABRA  "tupass";
    
$BASE     "tubasededatos";
    
$CONECTOR mysql_connect($SERVIDOR$USUARIO$PALABRA);
    
mysql_select_db($BASE$CONECTOR);

?>