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.
我正在做这个小项目,我希望只有在我点击按钮/进行搜索后才会显示结果表...
这是链接http://img.needforgaming.x10.mx/procurar.php 我的目标是在进行搜索之前隐藏表格。
用于isset()检查表单是否已提交。
isset()
if(isset($_POST['btn_procurar'])){ //display form }
另一种方法是使用empty():
empty()
if (!empty($_POST)) { //display form }
希望这可以帮助!