不写action的情况下form提交到的位置
Posted 信行合一
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不写action的情况下form提交到的位置相关的知识,希望对你有一定的参考价值。
在php中如果不写清楚要提交到的action的位置的话,那么系统默认的是当前的页面
'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>个人信息</title>
</head>
<?php
//$action="add";
$btn="提交";
?>
<body>
请输入您的个人信息:
<form action="">
姓名:<input type="text" name="name">
年龄:<input type="text" name="age">
<input type="submit" value="<?=$btn?>">
</form>
<?php
$name=$_GET["name"];
$age=$_GET['age'];
if(!($name==null||$age==null))
echo "欢迎你.";
echo "<script>alert('姓名:$name\\\\n 年龄:$age') ;</script>";
echo date("YmdHis")."-".rand(100,999);
?>
</body>
</html>
以上是关于不写action的情况下form提交到的位置的主要内容,如果未能解决你的问题,请参考以下文章