Ben bir mysql DB değerleri ile girişleri görüntüler ve GET
sonuçlarına dayalı bir db tablosunu günceller başka bir sayfaya form sonuçlarını gönderir basit bir PHP form var:
echo "<table>";
echo "<tr>";
echo " <th>Project No</th>
<th>Customer Name</th>
<th>Description</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td><input value=" . $row['project_no'] . "></input></td>";
echo "<td><input value='" . $row['cust_name'] . "'></input></td>";
echo "<td><input value='" . $row['description'] . "'></input></td>";
echo "</tr>";
}
echo "</table>";
echo "<input type='submit' value='Update' />";
echo "</form>";
updateprojects.php
Ben ne zaman:
echo $_GET['project_no'].$_GET['cust_name'].$_GET['description'];
Ben herhangi bir değer görmüyorum. Neden bu?