我正在尝试从$ _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'");
}
}
}