Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/05/2011, 11:56
marcofbb
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Clase Vacias Php

Código PHP:
Ver original
  1. <?php
  2. class factura
  3. {
  4. var $pfactura;
  5.  
  6. //Constructor
  7. function __construct($pfactura)
  8. {  
  9. $this->pfactura = $pfactura;   
  10. }
  11.  
  12. function insertar(){
  13. include ("conexion.php");
  14. $i = "INSERT INTO `BD`.`tabla` (`factura`) VALUES ('$this->pfactura')";
  15. $in=mysql_query($i,$conexion) or die(mysql_error());
  16. }
  17.  
  18. }
  19. ?>