重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
请检查一下$WB对应的表是否已经定义?提示的是(indexx附近有语法错误。是你的SQL语句有问题,
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网络空间、营销软件、网站建设、大方网站维护、网站推广。
建议将执行的SQL单独赋值。
$sql="insert into $WB (indexx,id,mid,uid,parent,t,reposts_count,attitudes_count,comments_count,text,original_text,user_created_at,followers_count,
bi_followers_count,favourites_count,statuses_count,friends_count,username,screen_name,user_description,gender,province,city,verified,verified_reason,verified_type,
user_location,user_avatar,user_geo_enabled,picture,geo) values $data_values");";
echo $sql."br/";//测试输出,然后检查该SQL语句的语法是否正确。
$query=mysqli_query($sql);
存数据的时候,需要对字符串进行addslashes
()进行操作$str=addslashes($str);$sql="insert
into
`tab`
(`content`)
values('$str')";去除数据的时候操作如下$str=stripslashes($str);在页面显示时进行如下操作$str=htmlspecialchars(nl2br($str))
;
查看原帖
需要PHP基础知识和数据库基础知识。
以SQL为例。使用PHP MySQL 函数可以编辑数据库。
mysql_connect() 函数打开MySQL 连接。举例
?php
$con = mysql_connect("localhost","mysql_user","mysql_pwd");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}// 一些代码...mysql_close($con);
?
mysql_connect()三个参数分别是服务器名,连接账号,连接密码。
连接之后,可以使用mysql_select_db()设置要处理的数据库,后面则是用数据库语句处理数据。SQL语法简介网页链接