<?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 的表名和字段名要用 ` 的.....我用的都是 ' ....见笑见笑...多谢各位..过来穿了个门...

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

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
Easy-to-use and free code editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
