18年7月21日课堂随笔
Posted yujiaduo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了18年7月21日课堂随笔相关的知识,希望对你有一定的参考价值。
<form action="index1.php" method="get">表单提交
<input type="text" name="a1">
<input type="text" name="a2">
<input type="text" name="a3">
<input type="submit" value="get提交">
</form>
<form action="index1.php" method="post">
<input type="text" name="a1">
<input type="text" name="a2">
<input type="text" name="a3">
<input type="submit" value="post提交">
<?php
echo"<pre>";
print_r($_GET);
print_r($_POST);
?>
切开点连
$a = "aaa";
$b = "111";
echo "aa".$b."a";
echo "<hr>";
echo $a.$b;
a = "我在学习PHP!";
$b = $a;
$c = &$a;
echo $c."<br />";
$a = "php";
$c = ‘111‘;
echo $a."<br/>";
echo $c."<br/>";
以上是关于18年7月21日课堂随笔的主要内容,如果未能解决你的问题,请参考以下文章