Tengo el siguiente problema al intentar condicionar esta funcion..
Código PHP:
   function introduce_producto($id_prod, $nombre_prod, $col_prod, $tam_prod, $cant_prod, $pu_prod){
        $this->array_id_prod[$this->num_productos]!=$id_prod;
        $this->array_nombre_prod[$this->num_productos]=$nombre_prod;
        $this->array_col_prod[$this->num_productos]=$col_prod;
        $this->array_tam_prod[$this->num_productos]=$tam_prod;
        $this->array_cant_prod[$this->num_productos]=$cant_prod;
        $this->array_pu_prod[$this->num_productos]=$pu_prod;
        $this->array_precio_prod[$this->num_productos]= $this->array_cant_prod[$this->num_productos] * $this->array_pu_prod[$this->num_productos];
        $this->num_productos++;
                } 
    relativamente este es el unico detalle q me falta para que funcione completamente...
Gracias...!
 
 
