PHP MySQL仅在更新之前在表中显示一行

时间:2014-10-31 09:56:42

标签: php mysql arrays

我有一个页面来更新MySQL数据库中的现有配方记录。它带来了菜肴细节,还包括一个单独的食材表。但是我的代码只在成分表中显示一行,我认为这是具有最高ID的成分。我需要它来显示所有成分,但无法解决我的代码中需要更改的内容。如果需要,它为用户提供编辑和添加/删除(使用JavaScript)行的选项。

我对PHP很陌生,所以我的代码效率可能不高,但确实更新了记录。它只是在第一次实例中不会显示所有这些内容。

这是我的代码中的代码段。 Connection和$ DishID在页面的前面定义。

        <table id="Table" border="1">
        <tr>
            <td>#</td>
            <td>IngID</td>
            <td>Volume</td>
            <td>UnitID</td>
            <td>Delete</td>
            <td>Add</td>
        </tr>
        <tr>
            <td>1</td>
<?php
    $cdquery="SELECT i.IngID, i.IngName, di.Volume, i.UnitID 
        FROM Ing i
        join DishIng di
        on i.IngID = di.IngID
        Where di.DishID = $DishID";
            $cdresult=mysqli_query($con, $cdquery) or die ("Query to get data from ingredients failed: ".mysqli_error($con));

            while ($cdrow=mysqli_fetch_array($cdresult)) {
        $IngID=$cdrow["IngID"];
        $IngName=$cdrow["IngName"];
        $Volume=$cdrow["Volume"];
        $UnitID=$cdrow["UnitID"];
}
php?>
            <td><input type="text" name="IngID[]" value="<? echo $IngID; ?>"></td>
            <td><input type="text" name="IngName[]" value="<? echo $IngName; ?>"></td>
            <td><input type="text" name="Volume[]" value="<? echo $Volume; ?>"></td>       
            <td><input type="text" name="UnitID[]" value="<? echo $UnitID; ?>"></td>
            <td><input type="button" id="del" value="Delete" onclick="deleteRow(this)"/></td>
            <td><input type="button" id="add" value="Add" onclick="insRow()"/></td>
        </tr>
    </table>

非常感谢提前。

2 个答案:

答案 0 :(得分:1)

带上您的input insdie the while loop 以及button之外的while loop就像这样

echo '<form>';
while ($cdrow=mysqli_fetch_array($cdresult)) {
        $IngID=$cdrow["IngID"];
        $IngName=$cdrow["IngName"];
        $Volume=$cdrow["Volume"];
        $UnitID=$cdrow["UnitID"];
         ?>
<td><input type="text" name="IngID[]" value="<? echo $IngID; ?>"></td>
            <td><input type="text" name="IngName[]" value="<? echo $IngName; ?>"></td>
            <td><input type="text" name="Volume[]" value="<? echo $Volume; ?>"></td>       
            <td><input type="text" name="UnitID[]" value="<? echo $UnitID; ?>"></td>

        </tr>
    </table>
<?php }?>

<td><input type="button" id="del" value="Delete" onclick="deleteRow(this)"/></td>
            <td><input type="button" id="add" value="Add" onclick="insRow()"/></td> 
            </form>

注意 mysqli_不会自动保护您的应用,bind your value.

答案 1 :(得分:0)

<table id="Table" border="1">
    <tr>
        <td>#</td>
        <td>IngID</td>
        <td>Volume</td>
        <td>UnitID</td>
        <td>Delete</td>
        <td>Add</td>
    </tr>

&LT; ?PHP的

$DishID = 'put the value here!!!!!!!';
$cdquery="
    SELECT 
        i.IngID,
        i.IngName,
        di.Volume,
        i.UnitID 
    FROM 
        Ing i,
        DishIng di
    WHERE 
        i.IngID = di.IngID
        di.DishID = '".$DishID."'
";

$cdresult = mysqli_query($con, $cdquery) or die ("Query to get data from ingredients failed: ".mysqli_error($con));

$i = 1;
while ($row = mysqli_fetch_all($cdresult, MYSQLI_ASSOC)) {

&GT;

    <tr>
        <td><?php echo $i; ?></td>
        <td><input type="text" name="IngID[]" value="<?php echo $row['IngID']; ?>"></td>
        <td><input type="text" name="IngName[]" value="<?php echo $row['IngName']; ?>"></td>
        <td><input type="text" name="Volume[]" value="<?php echo $row['Volume']; ?>"></td>       
        <td><input type="text" name="UnitID[]" value="<?php echo $row['UnitID']; ?>"></td>
        <td><input type="button" id="del" value="Delete" onclick="deleteRow(this)"/></td>
        <td><input type="button" id="add" value="Add" onclick="insRow()"/></td>
    </tr>

&LT; ?php}?&gt;