| Author |
Random Photo Panel |
wadday
Member

Posts: 12
Location: Maldives - Island
Joined: 28.12.06 |
| Posted on 04-02-2007 05:54 |
|
|
adnan, need help again... on this
<?php
if (file_exists(INFUSIONS."random_photo_panel/locale/".$settings['locale'].".php" ) {
include INFUSIONS."random_photo_panel/locale/".$settings['locale'].".php";
} else {
include INFUSIONS."random_photo_panel/locale/English.php";
}
$result=dbquery(
"SELECT photo_thumb1,ta.album_id,album_title,photo_id,photo_title FROM ".$db_prefix."photo_albums ta ".
"INNER JOIN ".$db_prefix."photos USING (album_id) ORDER BY RAND() LIMIT 1"
);
if (dbrows($result) == 1) {
@openside($locale['FOT_001']);
$data=dbarray($result);
$filename=PHOTOS.$data['photo_id'].'t.jpg';
if (!file_exists($filename)) $filename=$image_url.'/imagenotfound.jpg';
echo "<div style='text-align:center'>
<a href='".BASEDIR."photogallery.php?photo_id=".$data['photo_id']."' class='gallery'>
<img src='".PHOTOS."album_".$data['album_id']."/".$data['photo_thumb1']."' width='".$settings['thumb_image_w']."' height='".$settings['thumb_image_h']."'
title='".$data['photo_title']."' alt='".$data['photo_title']."'>
</a><br /><a href='".BASEDIR."photogallery.php?album=".$data['album_id']."'>".$data['photo_title']."</a>
<br />
".$data['album_title']."
</div>";
@closeside();
}
?>
i can see the panel with the name of the photo...but thumb can't be display... |
|
| Author |
Sponsored Link |
Advertisement
Location: Internet
|
|
|
|
| Author |
RE: Random Photo Panel |
Adnan
Super Administrator
Posts: 80
Location: Montreal, Canada
Joined: 23.03.06 |
| Posted on 08-02-2007 22:18 |
|
|
Don't worry I haven't forgotten, I'll be getting back to you on this soon ... just a bit busy this week since its my week of work! 
Adnan. |
|
| Author |
RE: Random Photo Panel |
wadday
Member

Posts: 12
Location: Maldives - Island
Joined: 28.12.06 |
| Posted on 11-02-2007 09:53 |
|
|
I managed to fix it...now it display the photos as well....only thing was that panel created for xversion of php-fusion i have to re-modify....and its perfect...check http://www.abadhuves.net.tc |
|
| Author |
RE: Random Photo Panel |
Adnan
Super Administrator
Posts: 80
Location: Montreal, Canada
Joined: 23.03.06 |
| Posted on 11-02-2007 12:29 |
|
|
   |
|