dreamweaver中怎样连接到Mysql中
大家好我想问个问题。最近在做设计,,用的是DW+javascript+mysql不知道算不算一个体系现在想用Javascript实现一个cookie的功能想用数据库存几个...
大家好
我想问个问题。最近在做设计,,用的是DW +javascript+mysql 不知道算不算一个体系
现在想用Javascript实现一个cookie的功能 想用数据库存几个数据
但在网上查过 貌似不能直接连接 要用什么代码啊?
给个具体流程和步骤 谢了?
分数不多 笑纳。。。。。。
cookie是保证用户名可以存储
求具体步骤 借机会学习一下 展开
我想问个问题。最近在做设计,,用的是DW +javascript+mysql 不知道算不算一个体系
现在想用Javascript实现一个cookie的功能 想用数据库存几个数据
但在网上查过 貌似不能直接连接 要用什么代码啊?
给个具体流程和步骤 谢了?
分数不多 笑纳。。。。。。
cookie是保证用户名可以存储
求具体步骤 借机会学习一下 展开
展开全部
简单连接mysql,php语句手写,连接语句在哪里用都是一样的
<?php
header('Content-Type: text/html; charset=utf-8');
$db=mysql_connect('localhost','qqtxt','zhh545454');
if($db)
{
mysql_query("SET character_set_connection=utf8, character_set_results=utf8,character_set_client=binary");
mysql_select_db('a') or die('select_db failed');
set_magic_quotes_runtime(0);
//ini_set('magic_quotes_runtime','off');
echo $temp='update a set a=a中\国c where id=1'; echo '<br/>';
$result = mysql_query('update a set a="a中aaa国c" where id=1') or die('Query failed: ' . mysql_error());
$query = 'select * from a where id=1';
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
while($row=mysql_fetch_array($result))
{
echo $row['a'];
}
//echo get_magic_quotes_runtime( );
}
?>
<?php
header('Content-Type: text/html; charset=utf-8');
$db=mysql_connect('localhost','qqtxt','zhh545454');
if($db)
{
mysql_query("SET character_set_connection=utf8, character_set_results=utf8,character_set_client=binary");
mysql_select_db('a') or die('select_db failed');
set_magic_quotes_runtime(0);
//ini_set('magic_quotes_runtime','off');
echo $temp='update a set a=a中\国c where id=1'; echo '<br/>';
$result = mysql_query('update a set a="a中aaa国c" where id=1') or die('Query failed: ' . mysql_error());
$query = 'select * from a where id=1';
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
while($row=mysql_fetch_array($result))
{
echo $row['a'];
}
//echo get_magic_quotes_runtime( );
}
?>
参考资料: http://hi.baidu.com/qqtxt/blog/item/cb80eafe0460aa285c6008b0.html
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询