Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - geshiro

#101
PHP / Re: php variable indefinida
22 Enero 2016, 02:29 AM
no puedo cambiarla ya que todo el proyecto trabaja en POO y no puedo cambiarla
#102
PHP / php variable indefinida
22 Enero 2016, 00:48 AM
hola buenas tardes en mi proyecto instale una libreria para hacer pdfs con php pero al momento de querer declarar la variable me dice variable indefinida

Código (php) [Seleccionar]

<?php
require(
'../fpdf/fpdf.php');
class PDF extends FPDF{
private $conexion;
public function __construct(){
require('conexion.php');
$this->conexion = new conexion();
$this->conexion->conectar();
}
}

$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial'''10);
$pdf->Image('../assests/img/tienda.gif' 10 ,810 13,'GIF');
$pdf->Cell(1810''0);
$pdf->Cell(15010'Store "Aron Imperial"'0);
$pdf->SetFont('Arial'''9);
$pdf->Cell(5010'Hoy: '.date('d-m-Y').''0);
$pdf->Ln(15);
$pdf->SetFont('Arial''B'11);
$pdf->Cell(708''0);
$pdf->Cell(1008'List product'0);
$pdf->Ln(23);
$pdf->SetFont('Arial''B',8);
$pdf->Cell(158'Code'0);
$pdf->Cell(508'Product'0);
$pdf->Cell(258'Price'0);
$pdf->Cell(258'Stock'0);
$pdf->Ln(8);
$pdf->SetFont('Arial','',8);
$record $product->query("SELECT * FROM product");
$pdf->Output();
?>



los errores


Notice: Undefined variable: product in C:\xampp\htdocs\store\fpdf\list_product.php on line 32

Fatal error: Call to a member function query() on null in C:\xampp\htdocs\store\fpdf\list_product.php on line 32
#103
Seguridad / nuevo en seguridad
14 Enero 2016, 03:48 AM
como entrarme en seguridad informatica uso kali linux y virtuales de win 7
#104
cuando tenia mis tablas separadas si me agarra va bien pero al cambiarla por tablas relacionadas foreigns key  , ya no me muestra mi tabla de mis produtos

Código (php) [Seleccionar]
function searchProduct($id,$main=false,$limit=false){
if($main !== false && $limit !== false){
$sql="SELECT * FROM product WHERE code like '%".$id."%' or product like '%".$id."%' ORDER BY idproduct ASC LIMIT $main,$limit";
}else{
$sql="SELECT * FROM product WHERE code like '%".$id."%' or product like '%".$id."%' ORDER BY idproduct";
}
echo $sql;
$this->conexion->conexion->set_charset('utf8');
$result=$this->conexion->conexion->query($sql);
$array = array();
while($record = $result->fetch_array(MYSQL_NUM)){
$array[] = $record;
}
return $array;
$this->conexion->cerrar();
}

mis tablas son estas
Código (sql) [Seleccionar]

CREATE TABLE IF NOT EXISTS `product` (
  `idproduct` int(11) NOT NULL,
  `code` varchar(15) NOT NULL,
  `product` varchar(50) NOT NULL,
  `price` decimal(9,2) NOT NULL,
  `stock` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Volcado de datos para la tabla `product`
--

INSERT INTO `product` (`idproduct`, `code`, `product`, `price`, `stock`) VALUES
(1, 'MG01', 'IPHONE 4S', '5000.00', 6),
(2, 'TCL01', 'IMAC', '5000.00', 6),
(3, 'ILK059', 'SAMSUNG', '5000.00', 6),
(4, '4520', 'HAWEI', '5000.00', 6),
(5, 'A081', 'SNOWBOARD', '5000.00', 6),
(6, 'MSD01', 'SKYBOARD', '5000.00', 6),
(7, 'AUR01', 'SADDS', '5000.00', 6),
(8, 'SA-205', 'CCD', '5000.00', 6),
(9, 'KB-1830', 'USB', '5000.00', 6),
(10, 'MGa01', 'MOVIES', '5000.00', 6),
(11, 'PAS48', 'KNM', '5000.00', 6),
(12, 'OE86Z', 'PJAGDS', '5000.00', 6),
(13, 'HVMHFV', 'ASSAD', '5000.00', 6),
(14, 'AFDD', 'CXVVXC', '5000.00', 6),
(15, 'DASFSDFD', 'XCXCV', '5000.00', 6);

-- --------------------------------------------------------

--
-- Estructura de tabla para la tabla `purchase`
--

CREATE TABLE IF NOT EXISTS `purchase` (
  `idpurchase` int(11) NOT NULL,
  `user_iduser` int(11) NOT NULL,
  `user_typeuser_idtypeuser` int(11) NOT NULL,
  `product_idproduct` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Volcado de datos para la tabla `purchase`
--

INSERT INTO `purchase` (`idpurchase`, `user_iduser`, `user_typeuser_idtypeuser`, `product_idproduct`) VALUES
(1, 1, 1, 10),
(2, 2, 2, 10);

ADD CONSTRAINT `fk_purchase_product1` FOREIGN KEY (`product_idproduct`) REFERENCES `product` (`idproduct`) ON DELETE NO ACTION ON UPDATE NO ACTION,
#105
PHP / Re: ayuda multi ususario
8 Diciembre 2015, 03:30 AM
quien me puede ayudar por favor? solo el multi usario
#106
PHP / ayuda multi ususario
2 Diciembre 2015, 03:07 AM
como puediera hacer un multi usario como me estructura que tengo necesito hacer un login de multi usario para poder hacer otra cosa pero me pudiera ayudar hacer una basica ??

archivo user
Código (php) [Seleccionar]

<?php

require_once('../Models/user.php');


$boton=$_POST['boton'];

switch ($boton) {
case 'cerrar':
session_start();
session_destroy();
break;
case 'login':
$username $_POST['username'];
$password $_POST['password'];

$ins = new user();
$array=$ins->identification($username,$password);
if ($array[0]==0
{
echo '0';
}
else
{
session_start();
$_SESSION['login']='YES';
$_SESSION['name']=$array[1];
}
break;
case 'show_product':
$instancia = new product();
echo $instancia->show_product();
break;

   case 'delete_product':
$code   $_POST['code'];
$delete = new product();
if($delete->del($code)){
echo "success";
}
else{
echo "there is something wrong";
}
break;
}
?>




usario_model.php
Código (php) [Seleccionar]

<?php 
class 
user
{
private $conexion;
public function __construct()
{
require_once('conexion.php');
$this->conexion= new conexion();
$this->conexion->conectar();
}

function identification($username,$password){
$pass=md5(sha1($password));
$sql="SELECT * FROM users WHERE username ='$username' && password ='$pass'";
$record $this->conexion->conexion->query($sql);
if ($record->num_rows 0) {
$row=$record->fetch_array();
}
else{
$row[0]=0;
}
return $row;
$this->conexion->cerrar();
}
}
?>

#107
como puedo hacer mi codigo hacerlo dinamico  , como lo hago mediante un solo for cada ves que le doy click se vayan agregando

Código (html4strict) [Seleccionar]

<html>
<head>
<title>form</title>
</head>
<body>
<table>
<thead>
<tr>
<th>nombre:</th>
<th>cantidad:</th>
<th>precio:</th>
</tr>
<tr>
<th><input type="text" id="name" placeholder="name"/></th>
<th><input type="text" id="quantity" placeholder="quantity"/></th>
<th><input type="text" id="price" placeholder="price"/></th>
<th><input type="button" id="btn" value="add"/></th>
</tr>
</thead>
<tbody id="data_table">
</tbody>
</table>
<script type="text/javascript">
window.onload = function(){
byId('btn').onclick = function(){
var data = {
name: byId('name').value,
quantity: byId('quantity').value,
price: byId('price').value
};
for(i=0;i<byTag(document,'input').length;i++){
document.getElementById("data_table").innerHTML += "<tr><td>"+data['name']+"</td><td>"+data['quantity']+"</td><td>"+data['price']+"</td></tr>";
}
console.log(arguments);
}
}
</script>
</body>
</html>
#108
PHP / Re: ayuda parte eliminar
25 Octubre 2015, 21:47 PM
¿?
#109
porque no usas la varible que asignas del password = sha1(password); asi la encriptas mas facil
#110
PHP / Re: ayuda parte eliminar
24 Octubre 2015, 16:12 PM
como puedo hacerlo para que lo haga atraves del DOM la parte de eliminar