Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/08/2011, 16:19
moscrates
 
Fecha de Ingreso: julio-2008
Mensajes: 366
Antigüedad: 15 años, 9 meses
Puntos: 7
Respuesta: Problema con mysql_fetch_assoc

Código PHP:
Ver original
  1. function EjecutarQuery($cadenaSQL)
  2. {
  3. $this->coneccion=mysql_connect($this->server,$this->user,$this->pass);
  4.         mysql_select_db($this->db,$this->coneccion);
  5.         $this->Resul=mysql_query($cadenaSQL,$this->coneccion);
  6.         return $this->Resul;
  7.         mysql_close($this->$coneccion);
  8. }