Tengo esto y no funciona:
Código PHP:
Ver original<?php
$carga = $_GET['id'];
$mysqli = new MySQLi('localhost', 'root', '', 'AppSastre');
$result = $mysqli->query("SELECT * FROM pedidos WHERE $carga = id AND $cliente = cliente AND $prenda = prenda AND $precio = precio");
$row_result = $result->fetch_assoc();
?>
<html>
<head>
<title>Modificar registro</title>
</head>
<body>
<form action="guardarcambios.php" method="post">¢
<input type="text" value="<?php echo $cliente?>"/>
</form>
</body>
</html>
Me salen los errores:
Notice: Undefined index: id in /Applications/XAMPP/xamppfiles/htdocs/sastre/modificar.php on line 2
Notice: Undefined variable: cliente in /Applications/XAMPP/xamppfiles/htdocs/sastre/modificar.php on line 4
Notice: Undefined variable: prenda in /Applications/XAMPP/xamppfiles/htdocs/sastre/modificar.php on line 4
Notice: Undefined variable: precio in /Applications/XAMPP/xamppfiles/htdocs/sastre/modificar.php on line 4
Fatal error: Call to a member function fetch_assoc() on boolean in /Applications/XAMPP/xamppfiles/htdocs/sastre/modificar.php on line 5
Dice que no he definido los tres campos pero, ¿no los he definido donde el MySQL?
Además, ¿en el archivo guardar_cambios.php basta con poner el código UPDATE...?