gpt4 book ai didi

mysql - mysql删除错误

转载 作者:行者123 更新时间:2023-11-30 00:17:47 25 4
gpt4 key购买 nike

我不明白为什么会出现错误

"Erreur de syntaxe près de '1' à la ligne 1"

(对不起,我是法国人......)

这是我的代码

$post_id=$_POST["del_id"];
$post_photo=$_POST["del_photo"];

$query=mysql_query("DELETE FROM produits WHERE id='$post_id'");
$ok=mysql_query($query) or die(mysql_error());
if ($ok) {
$small=$post_photo."_small.jpg";
$large=$post_photo."_large.jpg";
if (file_exists($small)) unlink($small);
if (file_exists($large)) unlink($large);
}

然而,mysql删除工作正常,但由于错误,我的两个jpg仍然在这里。

最佳答案

致扎法尔·马利克:是的,选择工作正常

这是完整的代码

<?php
if (isset($_POST["del_id"])) {
$post_id=mysql_real_escape_string($_POST["del_id"]);
$post_photo=$_POST["del_photo"];

$query=mysql_query("DELETE FROM produits WHERE id='$post_id'");
$ok=mysql_query($query) or die(mysql_error());
if ($ok) {
$small=$post_photo."_small.jpg";
$large=$post_photo."_large.jpg";
if (file_exists($small)) unlink($small);
if (file_exists($large)) unlink($large);
}
header("location: admin.php?page=produits");
}

titre_h1("NOHOME", "LISTE DES PRODUITS", "SUPPRIMER UN PRODUIT");

if (isset($_GET["id"])) {
$get_id=$_GET["id"];
$query = mysql_query("SELECT * FROM produits WHERE id='$get_id'");
$nbreLignes = mysql_num_rows($query);

echo "<div id='welcome'>\n";
echo "<form id='formulaire' name='produits_del' action='admin.php?page=produits_del' method='post'>\n";

if ($nbreLignes > 0) {
$donnees = mysql_fetch_assoc($query);
echo "<input type='hidden' name='del_id' value='".$get_id."'>\n";
echo "<input type='hidden' name='del_photo' value='".$repimages.$donnees['photo']."'>\n";
echo " CONFIRMEZ-VOUS LA SUPPRESSION DU PRODUIT ?\n";
echo " <div class='del_name'>".iso_strtoupper_fr($donnees['nom'])."</div>\n";
echo " <div style='margin-bottom:15px;'>\n";
echo " Origine : ".$donnees['origine']."<br />\n";
echo " Catégorie : ".$donnees['categorie']."<br />\n";
if ($donnees['scategorie']!='') echo " Sous Catégorie : ".$donnees['scategorie']."<br />\n";
echo " <br /><img src='".$repimages.$donnees['photo']."_small.jpg' />\n";
echo " </div>\n";
echo " <div class='bouton del_bouton'><a class='valider'>SUPPRIMER</a></div>\n";
echo " <div class='bouton del_bouton' style='float:right;'><a class='annuler'>ANNULER</a></div>\n";
} else {
echo " CE PRODUIT N'EXISTE PAS\n";
echo " <div class='bouton del_bouton' style='float:none;width:100%'><a class='annuler'>RETOUR À LA LISTE DES PRODUITS</a></div>\n";
}
} else {
header("location: admin.php?page=produits");
}

echo "</form>\n";
echo "</div>\n";
?>

关于mysql - mysql删除错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23514761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com