Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/12/2011, 18:05
Avatar de Master_raven
Master_raven
 
Fecha de Ingreso: junio-2008
Ubicación: Guatemala City, Guatemala, Guatemala
Mensajes: 95
Antigüedad: 16 años, 6 meses
Puntos: 3
Respuesta: como vincular base de dato con php

Código PHP:
Ver original
  1. mysql_connect("servidor", "usuario", "password");
  2.     mysql_select_db("basededatos");
  3.  
  4. //COMO REALIZAR UNA BUSQUEDA
  5.     mysql_query('tu consulta de mysql');
  6.  
  7. //CERRAR LA CONEXION
  8.     mysql_close();

http://www.php.net/manual/en/ref.mysql.php
__________________
<?APRENDIENDO