-1
さて、ここに行く! 私はmysqlデータベースからリクエストを取得して一連のイメージを取得しています!スライドショーとして表示することができます。その作業!しかし、私が今やっていることは、Jqueryで同じ画像を表示することです。 ?Jquery経由でmysqlからイメージを表示していますか?
<?php require("Connections/db_con.php"); ?>
<?php
$title = "slideshow";
$id = mysql_real_escape_string((int)$_GET['id']);
$query_pic = "SELECT * FROM photos WHERE listing_id = $id ";
$result_pic = mysql_query($query_pic , $db_con);
$num_pic = mysql_num_rows($result_pic);
$row_pic = mysql_fetch_array($result_pic);
if($num_pic != 0) {
$image_set = array();
$result = mysql_query("SELECT name FROM photos WHERE listing_id= $id");
while($images = mysql_fetch_array($result)) {
array_push($image_set, $images['name']);
}
}
?>
<html>
<head>
<title><>php echo $title; ?></title>
<link rel="stylesheet" href="stylesheets/styles/styles.css" media='all'/>
<link href="stylesheets/layout.css" media="all"/>
<link rel="stylesheet" href="stylesheets/styles/slideshow.css" media='all'/>
<script type='text/javascript'>
var photos = new Array(<?php echo "'".implode("','", $image_set)."'"; ?>);
var start = 0; // array index of first slide
var end = <?php echo $num_pic -1; ?>; // array index of last slide
var current = start;
var doplay = true; // do not play show automatically
// skip to first slide
function first() {
current = 0;
change();
}
// advance to next slide
function previous() {
current -= 1;
if(current < start) current = end; // skip to last slide
change();
}
// go back to previous slide
function next() {
current += 1;
if(current > end) current = start; // skip to first slide
change();
}
// skip to last slide
function last() {
current = end;
change();
}
// change slide according to value of current
function change() {
document.photo.src = 'uploads/' + photos[current];
}
// play automatic slideshow
function play() {
if(doplay == true) {
next();
setTimeout(play, 2000); // call play() in 2.5 seconds
}
}
// pause slideshow
function pause() {
doplay = false;
}
</script>
</head>
<body>
<div id='container'>
<div class='form'>
<div id='photobox'>
<img name='photo' src='uploads/<?php echo $image_set[0]; ?>' alt=''/><br /><br />
<?php // echo "Total " . $num_pic . " photo(s) found" ; ?>
</div>
</div>
</div>
</body>
</html>
どのように私はjQueryのスライドショーと同じ検索された画像ではなく、私は今、それを表示しています1を表示することができますが..私は懸命に試みたが、私は毎回失敗.. :(
jqueryについての情報はどこですか?そのコードで何がうまくいかないかを知る必要があります。 – ariefbayu
スライドショー用のjquery用のサイクルプラグインがあります – Rafay