Ok? Visa gärna hur dina SQL-frågor (SQL query) ser ut just nu, så att vi lättare kan vägleda dig.
denna försöker jag med
<?php
// connect to the database
include("connect-db.php");
// creates the new/edit record form
// since this form is used multiple times in this file, I have made it a function that is easily reusable
function renderForm($product_code = '', $product_name = '', $product_desc = '', $product_img_name = '', $price = '', $error = '', $id = '')
{ ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>
<?php if ($id != '') { echo "Edit"; } else { echo "New"; } ?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link type="text/css" media="all" rel="stylesheet" href="css/styla.css">
</head>
<body>
<h1><?php if ($id != '') { echo "Edit"; } else { echo "New"; } ?></h1>
<?php if ($error != '') {
echo "<div style='padding:4px; border:1px solid red; color:red'>" . $error
. "</div>";
} ?>
<form action="" method="post">
<div>
<?php if ($id != '') { ?>
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<p>ID: <?php echo $id; ?></p>
<?php } ?>
<strong>product_code: *</strong> <input type="text" name="product_code"
value="<?php echo $product_code; ?>"/><br/>
<strong>product_name: *</strong> <input type="text" name="product_name"
value="<?php echo $product_name; ?>"/><br/>
<strong>product_desc: *</strong> <input type="text" name="product_desc"
value="<?php echo $product_desc; ?>"/><br/>
<strong>product_img_name: *</strong> <input type="text" name="product_img_name"
value="<?php echo $product_img_name; ?>"/><br/>
<strong>price: *</strong> <input type="text" name="price"
value="<?php echo $price; ?>"/><br/>
<p>* required</p>
<input type="submit" name="submit" value="Submit" />
</div>
</form>
</body>
</html>
<?php }
/*
EDIT RECORD
*/
// if the 'id' variable is set in the URL, we know that we need to edit a record
if (isset($_GET['id']))
{
// if the form's submit button is clicked, we need to process the form
if (isset($_POST['submit']))
{
// make sure the 'id' in the URL is valid
if (is_numeric($_POST['id']))
{
// get variables from the URL/form
$id = $_POST['id'];
$product_code = htmlentities($_POST['product_code'], ENT_QUOTES);
$product_name = htmlentities($_POST['product_name'], ENT_QUOTES);
$product_desc = htmlentities($_POST['product_desc'], ENT_QUOTES);
$product_img_name = htmlentities($_POST['product_img_name'], ENT_QUOTES);
$price = htmlentities($_POST['price'], ENT_QUOTES);
// check that firstname and lastname are both not empty
if ($product_code = '' || $product_name = ''|| $product_desc = ''|| $product_img_name == ''|| $price = '')
{
// if they are empty, show an error message and display the form
$error = 'ERROR: Please fill in all required fields!';
renderForm($product_code, $product_name, $product_desc, $product_img_name, $price, $error, $id);
}
else
{
// if everything is fine, update the record in the database
if ($stmt = $mysqli->prepare("UPDATE products SET product_code = ?, product_name = ?, product_desc = ?, product_img_name = ?, price = ?
WHERE id=?"))
{
$stmt->bind_param("ssi", $product_code, $product_name, $product_desc, $product_img_name, $price, $id);
$stmt->execute();
$stmt->close();
}
// show an error message if the query has an error
else
{
echo "ERROR: could not prepare SQL statement.";
}
// redirect the user once the form is updated
header("Location: view.php");
}
}
// if the 'id' variable is not valid, show an error message
else
{
echo "Error!";
}
}
// if the form hasn't been submitted yet, get the info from the database and show the form
else
{
// make sure the 'id' value is valid
if (is_numeric($_GET['id']) && $_GET['id'] > 0)
{
// get 'id' from URL
$id = $_GET['id'];
// get the recod from the database
if($stmt = $mysqli->prepare("SELECT * FROM products WHERE id=?"))
{
$stmt->bind_param("i", $id);
$stmt->execute();
$stmt->bind_result($id, $product_code, $product_name, $product_desc, $product_img_name, $price);
$stmt->fetch();
// show the form
renderForm($product_code, $product_name, $product_desc, $product_img_name, $price, NULL, $id);
$stmt->close();
}
// show an error if the query has an error
else
{
echo "Error: could not prepare SQL statement";
}
}
// if the 'id' value is not valid, redirect the user back to the view.php page
else
{
header("Location: view.php");
}
}
}
/*
NEW RECORD
*/
// if the 'id' variable is not set in the URL, we must be creating a new record
else
{
// if the form's submit button is clicked, we need to process the form
if (isset($_POST['submit']))
{
// get the form data
$product_code = htmlentities($_POST['product_code'], ENT_QUOTES);
$product_name = htmlentities($_POST['product_name'], ENT_QUOTES);
$product_desc = htmlentities($_POST['product_desc'], ENT_QUOTES);
$product_img_name = htmlentities($_POST['product_img_name'], ENT_QUOTES);
$price = htmlentities($_POST['price'], ENT_QUOTES);
// check that firstname and lastname are both not empty
if ($product_code = '' || $product_name = '' || $product_desc = '' || $product_img_name == '' || $price = '' )
{
// if they are empty, show an error message and display the form
$error = 'ERROR: Please fill in all required fields!';
renderForm($product_code, $product_name, $product_desc, $product_img_name, $price, $error);
}
else
{
// insert the new record into the database
if ($stmt = $mysqli->prepare("INSERT products (product_code, product_name, product_desc, product_img_name, price) VALUES (?, ?)"))
{
$stmt->bind_param("ss", $product_code, $product_name, $product_desc, $product_img_name, $price);
$stmt->execute();
$stmt->close();
}
// show an error if the query has an error
else
{
echo "ERROR: Could not prepare SQL statement.";
}
// redirec the user
header("Location: view.php");
}
}
// if the form hasn't been submitted yet, show the form
else
{
renderForm();
}
}
// close the mysqli connection
$mysqli->close();
?>
@starwolf1
Lägg din kod inom taggen [code][/code] så formateras din text lite snyggare. Se nedan för exempel.
$stmt->bind_param("ssi", $product_code, $product_name, $product_desc, $product_img_name, $price, $id);
Raden ovan innehåller fel, du har antagligen modifierat ett befintigt skript med andra variabler. Första parametern "ssi" skall mest troligt vara "ssssii". Läs mer om bind_parm här.
- Amazons vd vill ha reklam i AI‑assistent29
- Helt ny dator stängde av sig själv39
- alla ramslotar fungerar inte efter byte av kylpasta3
- Testpilot: Agon Pro AG276UZD – QD-OLED i 4K UHD5
- HBO Max och Rpi5+Ubuntu? funkar det3
- Riskerar jag min nya 7950x3d med mitt moderkort?1
- Ny gamerdad-gamingburk budget 10k4
- Prestandaproblem på AMD-kort kan bero på Nvidia-optimeringar84
- Övriga fynd (bara tips, ingen diskussion) — Läs första inlägget först!1,6k
- Vad spelar du för tillfället?2,0k
- Säljes 💥 Till salu: ASUS GeForce RTX 3070 8GB TUF GAMING OC 💥
- Köpes Söker RTX 3080
- Köpes Söker 4st reverse rgb fläktar 120mm
- Köpes Söker grafikkort, am4 prolle, och am4 itx bräda
- Säljes PNY GeForce RTX 4080 16GB XLR8 Gaming VERTO Epic-X
- Säljes Samsung Galaxy Watch8 Classic helt ny och oöppnad.
- Säljes i7-4770K, 16gb ram, GTX 970, ENDER 3, EGPU docks, PSU, SSD, diverse smådelar.
- Säljes Mac Mini M4 Pro med mus & tangentbord
- Säljes AM4 Uppgraderingspaket & Grafikkort - (B550-Plus, Ryzen 7 5800X, 32GB DDR4), RX580, RTX3080 10G
- Säljes Acer Nitro XV252QF 390Hz IPS-skärm till salu
- Snabbkoll: Har du separata datorer för jobb och nöje?22
- Microsoft lägger ned Windows 11 SE14
- Amazons vd vill ha reklam i AI‑assistent28
- MSI:s nya RTX 5080 har blower‑kylare26
- Cyberpunk 2077 visar vad Apples grafikkretsar går för35
- Prestandaproblem på AMD-kort kan bero på Nvidia-optimeringar84
- Pi-hole läckte donatorers namn och mejladresser17
- Battlefield 6 får systemkrav inför den öppna betan79
- Intel Xess 2 blir tillgängligt för Geforce och Radeon20
- Slaget: SweClockers mot FZ i Battlefield 6 – anmäl dig nu!28
Externa nyheter
Spelnyheter från FZ
- Rekordslakt i FZ:s sommarutmaning! idag
- Nintendo varnar: Använd inte Switch 2 i extrema temperaturer idag
- Få det krypa i skinnet med 12 minuters Silent Hill f-gameplay igår
- Battlefield 6 ska bara få skins som passar in i spelets värld igår
- Rapport: Bioshock 4-utvecklingen lever inte upp till 2K Games förväntningar igår