Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/11/2010, 09:24
px87
 
Fecha de Ingreso: octubre-2010
Mensajes: 8
Antigüedad: 14 años
Puntos: 5
Respuesta: Problema con muchas columnas....

Solucionado!!!

Lo q hice fue cambiar esto:

Código PHP:
 public function getOrderByID($itemID) {
        
        
$stmt mysqli_prepare($this->connection"SELECT * FROM $this->tablename where order_id=?");
        
$this->throwExceptionOnError();
        
        
mysqli_stmt_bind_param($stmt$itemID);        
        
$this->throwExceptionOnError();
        
        
mysqli_stmt_execute($stmt);
        
$this->throwExceptionOnError(); 

Por esto:

Código PHP:
    public function getOrderByID($x) {
        
        
        
$sql "SELECT * FROM `order` where order_id LIKE '%$x%'";
        
        
        
$stmt mysqli_prepare($this->connection$sql);
        
$this->throwExceptionOnError();
        
        
mysqli_stmt_execute($stmt);
        
$this->throwExceptionOnError(); 
Este cambio en el codigo autogenerado lo hice hace tiempo para otros fines.

La verdad no soy muy diestro con PHP, me da un poco d pena pedir esto jeje, me podrian explicar por q me funciono, osea, cual es la diferencia entre uno y otro codigo?

Saludos y muchas gracias.

Última edición por px87; 01/11/2010 a las 13:06