Home  >  Article  >  Backend Development  >  PHP insert语法详解_PHP教程

PHP insert语法详解_PHP教程

WBOY
WBOYOriginal
2016-07-21 15:51:20768browse

 

    上次程序中有这么一句话:

$exec="insert into info (ename,pcname) values ('".$_POST["ename"]."','".$_POST["pcname"]."')";

    解释一下这句话的意义。SQL插入记录的语法是:

    insert into 表名 (字段名1,字段名2, ...) values ("字段1的值","字段2的值", ...)

    先前那句程序就是根据这个语法而来,需要注意的是,values括号中的值我都加上了引号,这是因为所对应的字段类型为varchar,如果对应的字段类型是int之类的话,那么就应该把引号去掉!一定要注意。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/319145.htmlTechArticle上次程序中有这么一句话: $exec="insertintoinfo(ename,pcname)values('".$_POST["ename"]."','".$_POST["pcname"]."')"; 解释一下这句话的意义。SQL插入记录的语法...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn