douchen2025 2016-12-07 12:16
浏览 41

更新不在Php和MySql中工作的数据

So, I'm new in php and using mysql. In my program, I tried making the simple edit, add and delete functions. Well, the add and delete functions are working but there is something wrong with the edit one... Whenever I go to phpMyAdmin to check if there are changes in the database, I found none…
I would be very thankful if someone could guide me in this part…

A part of adminpanel.php:

if(array_key_exists('editshirt', $_POST))
{
    include 'editshirt.php';
    exit();
}if(array_key_exists('changeshirt', $_POST))
{
    if(!mysqli_query($dbconnect, 'update shirts set 
        shirtName="'.mysqli_real_escape_string($dbconnect, $_POST['shirtName']).'",
        shirtDescription="'.mysqli_real_escape_string($dbconnect, $_POST['shirtDescription']).'",
        shirtGender="'.mysqli_real_escape_string($dbconnect, $_POST['shirtGender']).'",
        shirtColor="'.mysqli_real_escape_string($dbconnect, $_POST['shirtColor']).'",
        shirtPrice="'.mysqli_real_escape_string($dbconnect, $_POST['shirtPrice']).'",
        shirtPicture="'.mysqli_real_escape_string($dbconnect, $_POST['shirtPicture']).'",
        where shirts.shirtId="'.mysqli_real_escape_string($dbconnect, $_POST['shirtId']).''))
        echo ' ';
    exit();
} 

And here's my editShirt.php

<?php
$yas = mysqli_query($dbconnect, "select * from shirts where shirtId=".mysqli_real_escape_string($dbconnect, $_POST['shirtId']));
$roww = mysqli_fetch_array($yas);

echo "<p>Edit Shirt:</p>";
echo "<form action='?' method='post'>";

/*echo "<label for='shirtName'>Shirt Name: </label>
<input type='text' name='shirtName' value=".$roww['shirtName']."><br>";*/
echo "<label for='shirtName'>Shirt Name: </label>
<textarea name='shirtName' style='resize:none'>".$roww['shirtName']."</textarea><br>";

echo "<label for='shirtDescription'>Description: </label>
<textarea name='shirtDescription' rows='10' cols='30' style='resize:none'>".$roww['shirtDescription']."</textarea><br>";

echo "<label for='shirtGender'>Gender: </label>
<input type='radio' name='shirtGender' value='0'";
if($roww['shirtGender']=='0') echo"checked='checked'";
    echo ">Male&nbsp&nbsp<input type='radio' name='shirtGender' value='0'";
if($roww['shirtGender']=='1') echo "checked='checked'";
    echo ">Female&nbsp&nbsp<input type='radio' name='shirtGender' value='1'";
if($roww['shirtGender']=='2') echo "checked='checked'";
    echo ">Unisex<br><br>";

echo "<label for='shirtColor'>Color: </label>
<input type='radio' name='shirtColor' value='0'";
if($roww['shirtColor']=='0') echo "checked='checked'";
    echo ">Colored&nbsp&nbsp<input type='radio' name='shirtColor' value='1'";
if($roww['shirtColor']=='1') echo "checked='checked'";
    echo ">White&nbsp&nbsp<input type='radio' name='shirtColor' value='1'";
if($roww['shirtColor']=='2') echo "checked='checked'";
    echo ">Black<br><br>";

echo "<label for='shirtPrice'>Shirt Price: </label>
<input type='text' name='shirtPrice' value=".$roww['shirtPrice']."><br>";

echo "<label for='shirtPicture'>Shirt Picture: </label>
<input type='text' name='shirtPicture' value=".$roww['shirtPicture']."><br>";

echo "<input type='hidden' name='shirtId' value=".mysqli_real_escape_string($dbconnect, $_POST['shirtId']).">";

echo "<input type='submit' name='changeshirt' value='Update shirt'>";

echo "</form>";?>
  • 写回答

2条回答 默认 最新

  • donglangtun1850 2016-12-07 12:52
    关注

    This code is written in very bad way, although I have corrected the code.

    mysqli_query($dbconnect, "update shirts set 
        shirtName='".mysqli_real_escape_string($dbconnect, $_POST['shirtName'])."',
        shirtDescription='".mysqli_real_escape_string($dbconnect, $_POST['shirtDescription'])."',
        shirtGender='".mysqli_real_escape_string($dbconnect, $_POST['shirtGender'])."',
        shirtColor='".mysqli_real_escape_string($dbconnect, $_POST['shirtColor'])."',
        shirtPrice='".mysqli_real_escape_string($dbconnect, $_POST['shirtPrice'])."',
        shirtPicture='".mysqli_real_escape_string($dbconnect, $_POST['shirtPicture'])."',
        where shirts.shirtId='".mysqli_real_escape_string($dbconnect, $_POST['shirtId'])."'");
    

    Hope this will help.

    评论

报告相同问题?

悬赏问题

  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值