<php
$conn
=
mysql_connect('localhost','root','')
or
>
mysql_connect第二个参数是用户名,第三个参数
默认情况下,用上面测试下,如果不行就看下面是密码
<php
$conn
=
mysql_connect('localhost','用户名','密码')
or
die('连接数据库失败,请检查您的数据库配置');
>
可以用无缝滚动效果 如:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
{ margin: 0; padding: 0;}
body{ background-color:#1B1B1B}
#div1{ width: 800px; height: 150px; position: relative; margin: 100px auto;overflow: hidden;}
#div1 ul { width: 800px; height: 150px; position: relative; }
#div1 ul li { height: 150px; float: left; list-style: none; padding-right:20px;}
#div1 ul li img { width: 200px; height: 150px; display: inline-block;}
a{ color: #B4B4B4; }
</style>
<script type="text/javascript">
windowonload=function(){
var odiv = documentgetElementById('div1');
var oul = odivgetElementsByTagName('ul')[0];
var ali = oulgetElementsByTagName('li');
var spa = -2;
oulinnerHTML=oulinnerHTML+oulinnerHTML;
oulstylewidth=ali[0]offsetWidthalilength+'px';
function move(){
if(ouloffsetLeft<-ouloffsetWidth/2){
oulstyleleft='0';
}
if(ouloffsetLeft>0){
oulstyleleft=-ouloffsetWidth/2+'px'
}
oulstyleleft=ouloffsetLeft+spa+'px';
}
var timer = setInterval(move,30)
odivonmousemove=function(){clearInterval(timer);}
odivonmouseout=function(){timer = setInterval(move,30)};
documentgetElementsByTagName('a')[0]onclick = function(){
spa=-2;
}
documentgetElementsByTagName('a')[1]onclick = function(){
spa=2;
}
}
</script>
</head>
<body>
<a href="#" style=" display: block; margin:0 auto; width: 50px;">向左走</a>
<a href="#" style=" display: block; margin:0 auto; width: 50px;">向右走</a>
<div id="div1">
<ul>
<li><img src="img/1jpg"/></li>
<li><img src="img/2jpg"/></li>
<li><img src="img/3jpg"/></li>
<li><img src="img/4jpg"/></li>
</ul>
</div>
</body>
</html>
以上就是关于php网站本地测试数据库怎么连接全部的内容,包括:php网站本地测试数据库怎么连接、php如何让数据库中的图片在网页首页滚动显示、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)