Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您需要首先检查它是否已设置:
<form action="<?php echo (isset($_GET['id'])) ? 'update.php?id='.$_GET['id']; : 'insert.php'; ?>" method="post">
我已经用if else三元运算符替换了你,以使内联代码也更整洁。
if else