我试图从 $_POST 中检索 id,但它从未进入preg_match
if。
我试过的:
echo "<b>Image: </b><input type='text' name='image_" . $row['id'] . "' value='";
...
foreach ($_POST as $key => $value)
{
if (preg_match('^image_(\d*)$', $key, $matches))
{
$id = $matches[1];
if (isset($_POST['title_' . $id]))
{
mysql_query("UPDATE table SET title='" . $_POST['title_' . $id] . "' where id='$id'");
}
}
}