Ver Mensaje Individual
  #9 (permalink)  
Antiguo 22/01/2013, 09:55
cesar_viridi
 
Fecha de Ingreso: enero-2012
Ubicación: Mexico Df
Mensajes: 95
Antigüedad: 12 años, 10 meses
Puntos: 6
Respuesta: MySQL query con variables PHP

Cita:
Iniciado por andresdzphp Ver Mensaje
Algo así:

Código PHP:
Ver original
  1. <?php
  2.  
  3. //MySQL Database Connect
  4. mysql_connect("localhost", "*******", "*********")  or die("Unable to connect to MySQL");
  5. mysql_select_db('tu_base_de_datos_aqui');
  6.  
  7. //get data from form  
  8. $email=$_POST['email'];
  9.  
  10. //Count coincidences on database
  11. $sql = "SELECT COUNT(*) existe FROM pressmails WHERE email='$email'";
  12. $result = mysql_query($sql) or die (mysql_error());
  13. $reg = mysql_fetch_assoc($result);
  14.  
  15. //If there are more than 0 coincidences the user is registered  
  16. //otherwise not registered
  17. if($reg['existe']){  
  18.     echo "The user is registered";
  19. } else {  
  20.     echo "The user is not registered";
  21. }  
  22.  
  23. //Close database connection

prueba tu conexion asi

Código PHP:
Ver original
  1. $conexion = mysql_connect("tuServer", "tuUsuariio", "tuPässword")  or die("Unable to connect to MySQL");
  2. mysql_select_db('tu_base_de_datos_aqui',$conexion);
  3. if($conexion){
  4. echo "conectado";
  5. }else{
  6. echo "No conectado";
  7. }
__________________
Mi proyecto web Desarrollo-Tech visitame http://www.desarrollo-tech.com