php

Posted 听风说爱你

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php相关的知识,希望对你有一定的参考价值。

$link = mysql_connect(‘localhost‘,‘root‘,‘root‘);
$db = mysql_select_db(‘ymt‘);
$a = mysql_query(‘set names utf8‘);
$sql = "select * from studys";
$res = mysql_query($sql);
while($arr = mysql_fetch_assoc($res)){
print_r($arr);
}   //打开

$sql = "DELETE from `studys` WHERE id = 4"; //删除
$sql = "insert into `studys` values()";    //添加
$sql = "select * from `studys` WHERE id = 4"; //预览
$sql = "update `studys` set () where id = 2";  //修改

三个输出:   echo   print_r    var_dump(常用)

form表单:  method="",(地址)      action="", (传输方法【post,get,file】)      enctype="", (看类型)           提交:submit             define:是一个常量;

 











以上是关于php的主要内容,如果未能解决你的问题,请参考以下文章

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?

php [php:PHPMailer示例] php库“PHPMailer”示例。 #PHP

php基础