码迷,mamicode.com
首页 > Web开发 > 详细

php 基础

时间:2017-05-27 12:16:08      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:访问   index.php   tle   ext   round   add   oba   ++   meta   

1.php内可以书写html 代码

2.php传输方式 为 $_GET,$_POST,$_REQUEST 三种方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>php</title>
</head>
<body>
<form action="index.php" method="post">
    <input type="text" name="user"><br>
    <input type="submit" value="提交">  //一定要是 submit 类型,否则将报错
</form>
<?php 
    echo $_POST["user"];
 ?>
</body>
</html>

 3.全局变量

 $var = 15;  
      
    function add() {  
        GLOBAL $var;  
        $var++;  
        print "var is $var";  
    }  
    add();  

 

4. 字符连接用 .,对象访问:obj->name

5.php 的Array类似与对象

php 基础

标签:访问   index.php   tle   ext   round   add   oba   ++   meta   

原文地址:http://www.cnblogs.com/haigui-zx/p/6912136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!