Código PHP:
Ver original<?php
class factura
{
var $pfactura;
//Constructor
function __construct($pfactura)
{
$this->pfactura = $pfactura;
}
function insertar(){
include ("conexion.php");
$i = "INSERT INTO `BD`.`tabla` (`factura`) VALUES ('$this->pfactura')";
}
}
?>