在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
google.html界面如图 代码如图:(比较简单,就是一个input输入框和input提交按钮,注意type为submit,而不是button) 复制代码 代码如下:<html> <head> <title>Winbobo</title> </head> <body> <div align="center"> <form action="google.php" method="get"> <input name="q" type="text"/> </br> <input name="btnSearch" type="submit" value="Search" /> </form> </div> </body> </html> google.php的代码如图:($_GET用于获取表单通过get方式传递的数据; $_POST用于获取表单通过post方式传递的数据) 复制代码 代码如下:<?php print "<pre>"; print_r($_GET); print "</pre>"; ?> 运行结果如图: |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论