Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/01/2011, 19:45
Avatar de Miguelithox
Miguelithox
 
Fecha de Ingreso: diciembre-2008
Ubicación: Viña del Mar
Mensajes: 287
Antigüedad: 15 años, 10 meses
Puntos: 7
Respuesta: Error en Consulta MySQL - OOP

En esta línea:
Código PHP:
Ver original
  1. $this->SQL = "SELECT * FROM registrarion WHERE email'$email'";

Debe ser:

Código PHP:
Ver original
  1. $this->SQL = "SELECT * FROM registrarion WHERE email = '$email'";
Otra cosa, la tabla se llama REGISTRARION o REGISTRATION. Tienes un problema con el nombre de la tabla.