Ver Mensaje Individual
  #22 (permalink)  
Antiguo 13/05/2011, 16:45
djmkmix
 
Fecha de Ingreso: abril-2011
Ubicación: Baja California sur
Mensajes: 39
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: mysql_fetch_array():

Código PHP:
Ver original
  1. <?php
  2. # FileName="Connection_php_mysql.htm"
  3. # Type="MYSQL"
  4. # HTTP="true"
  5. $hostname_basededatos = "localhost";
  6. $database_basededatos = "clientes";
  7. $username_basededatos = "***";
  8. $password_basededatos = "***";
  9. $basededatos = mysql_pconnect($hostname_basededatos, $username_basededatos, $password_basededatos) or trigger_error(mysql_error(),E_USER_ERROR);
  10. ?>