第二章 PHP入门基础之php代码写法

2019-04-08 19:32:51王旭

</head>
<body>
<form method="POST" action="demo10.php">
username:<input type="text" name="username" />
<input type="submit" value="submit" />
</form>
</body>
</html>

六.字符串连接用.

<?php
echo "the student name is :".$_POST['username'];
echo "<br/>";
echo "welcome to "."school";
?>
相关文章 大家在看