Jump to content

PHP slide show


web_master

Recommended Posts

Hi,

 

how can I made a slideshow in PHP?

 

<?php
// Query
$query_return = mysql_query("SELECT * FROM `table` ORDER BY `table_id` ASC");

if(!$query_return){
	echo mysql_error();
	exit;
}

while($request = mysql_fetch_array($query_return)) {

// File reload
$file = "file_dir/".$request['table_id']."_file.jpg";
	if(is_file($file)){
			$file_print = "<img src=\"".$file."\" alt=\"\" border=\"0\" />";
	}else{
		$file_print = "";
	}
print $file_print;
}
?>

 

Thanks in adwanced.

 

Link to comment
https://forums.phpfreaks.com/topic/62441-php-slide-show/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.