search
HomeBackend DevelopmentPHP TutorialPHP如何插入数据库

<?php$ostype=$_POST['ostype']; $uuid=$_POST['uuid'];$nowtime=time();$username='XXXX';$userpass='XXXX';$dbhost='localhost';$dbdatabase='XXX';//生成一个连接$db_connect=mysql_connect($dbhost,$username,$userpass) or die("Unable to connect to the MySQL!");$ret_json;if(!$db_connect) { 	$ret_json=array('code'=>1001, 'message'=>'链接数据库失败');} else {	mysql_select_db($dbdatabase,$db_connect);	$result = mysql_query("INSERT INTO t_dblocal_userinformation (ID, OSTYPE, UUID, LASTDATE) VALUES (NULL, $ostype, $uuid, $nowtime)");	if ($result) {		$ret_json=array('code'=>1000, 'message'=>'插入数据库成功');	}	else {		$ret_json=array('code'=>1002, 'message'=>'插入数据库失败');	}}$jobj=new stdclass();foreach($ret_json as $key=>$value){$jobj->$key=$value;}echo ''.json_encode($jobj);?>



为嘛插入数据库失败呢??
ID是自增的主键,LASTDATE是DATE类型


回复讨论(解决方案)

报错提示什么?
如果LASTDATE是DATE类型 $nowtime=date(‘Y-m-d’);
如果LASTDATE是DATETIME类型$nowtime=date(‘Y-m-d H:i:s');

echo mysql_error(); 报什么错误没有

少了引号了。
$result = mysql_query("INSERT INTO t_dblocal_userinformation (ID, OSTYPE, UUID, LASTDATE) VALUES (NULL,  '$ostype ',  '$uuid ',  '$nowtime ')");

少了引号了。
$result = mysql_query("INSERT INTO t_dblocal_userinformation (ID, OSTYPE, UUID, LASTDATE) VALUES (NULL,  '$ostype ',  '$uuid ',  '$nowtime ')");

同意

把你拼写的sql 放到数据库的(orcale 放到plsqldev  sqlserver 发到企业管理器) 执行下 看看能不能插入成功

第一个 想楼上那样说的 引号的问题
第二个  你的time()是返回的时间戳,和date类型对应不上吧 要转化处理一下才行

报错提示什么?
如果LASTDATE是DATE类型 $nowtime=date(‘Y-m-d’);
如果LASTDATE是DATETIME类型$nowtime=date(‘Y-m-d H:i:s');


哇,版主

echo mysql_error(); 报什么错误没有




报错:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''t_dblocal_userinformation'('ID', 'UUID', 'OSTYPE', 'LASTDATE') VALUES (NULL, 'E' at line 1


我知道了..原来PHP 的表名和字段名要用 ` 的.....我用的都是 ' ....见笑见笑...多谢各位..过来穿了个门...

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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

使用SQL中的MINUS操作符使用SQL中的MINUS操作符Feb 18, 2024 pm 04:53 PM

SQL中MINUS的用法及具体代码示例在SQL中,MINUS是一种用于在两个结果集之间执行差集操作的运算符。它用于从第一个结果集中删除与第二个结果集中相同的行。MINUS操作符返回的结果集将包含仅存在于第一个结果集中的行。下面通过具体的代码示例来演示MINUS的用法:假设有两个表-"table1"和"table2",它们的结构如下:表名:table1字段

我们可以在Java列表中插入空值吗?我们可以在Java列表中插入空值吗?Aug 20, 2023 pm 07:01 PM

SolutionYes,Wecaninsertnullvaluestoalisteasilyusingitsadd()method.IncaseofListimplementationdoesnotsupportnullthenitwillthrowNullPointerException.Syntaxbooleanadd(Ee)将指定的元素追加到此列表的末尾。类型参数E&nbsp;&minus;元素的运行时类型。参数e&nbsp;&minus;要追加到此列表的元

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

wps文档里插入中国地图的图文方法wps文档里插入中国地图的图文方法Mar 27, 2024 pm 02:01 PM

1、打开wps软件,进入wps文字的操作界面。2、在该界面内找到插入选项。3、点击插入选项,在其编辑区域内找到形状选项。4、点击形状选项,在其子级菜单那里找到推荐选项。5、在推荐选项内找到中国地图选项。6、点击中国地图选项,用鼠标左键在编辑输入区里拖拽,就得到了我们需要的中国地图。

php怎么将url的参数转化成数组php怎么将url的参数转化成数组Apr 21, 2022 pm 08:50 PM

转化方法:1、使用“mb_substr($url,stripos($url,"?")+1)”获取url的参数部分;2、使用“parse_str("参数部分",$arr)”将参数解析到变量中,并传入指定数组中,变量名转为键名,变量值转为键值。

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft