Fixed display part of recently uploaded images

This commit is contained in:
alopexc0de 2013-02-15 17:47:30 -05:00
parent 530b609771
commit 4493bcdc1c

View File

@ -13,6 +13,7 @@
* JavaScript fo show bigger image if clicked * JavaScript fo show bigger image if clicked
* Recently Uploaded Pictures on sidebar * Recently Uploaded Pictures on sidebar
* Automatic thumbnail generation - genthumb() (100px x 100px) * Automatic thumbnail generation - genthumb() (100px x 100px)
* Force Spaces in tags
* Fix headstuff() and title() * Fix headstuff() and title()
* Multiple tags without search? * Multiple tags without search?
* Classes? * Classes?
@ -425,9 +426,9 @@
* *
* JavaScript fo show bigger image if clicked * JavaScript fo show bigger image if clicked
* Recently Uploaded Pictures on sidebar * Recently Uploaded Pictures on sidebar
* DONE - Thumbnails for image list on main page (100px x 100px) * Automatic thumbnail generation - genthumb() (100px x 100px)
* Force spaces on tags
* Fix headstuff() and title() * Fix headstuff() and title()
* DONE - Picture Thumbnail for uname, tag, and search
* Multiple tags without search? * Multiple tags without search?
* Classes? * Classes?
* *
@ -471,6 +472,7 @@
<div id="main_navi"> <div id="main_navi">
<ul class="left"> <ul class="left">
<li><a href="http://www.unps-gama.info">Home</a></li> <li><a href="http://www.unps-gama.info">Home</a></li>
<li><a href="../img">Images</a></li>
<li><a href="http://unps.us" target="_unps">Shortener</a></li> <li><a href="http://unps.us" target="_unps">Shortener</a></li>
<li><a href="http://p.unps.us" target="_pro">Projects</a></li> <li><a href="http://p.unps.us" target="_pro">Projects</a></li>
<li><a href="https://github.com/alopexc0de/GAMA-Site" target="_git">GitHub</a></li> <li><a href="https://github.com/alopexc0de/GAMA-Site" target="_git">GitHub</a></li>
@ -510,7 +512,7 @@
</div> </div>
</li> </li>
</ul> </ul>
<br /> <!--<br /> Might not keep this
<ul> <ul>
<li class="widget widget_text"> <li class="widget widget_text">
<div class="textwidget"> <div class="textwidget">
@ -523,14 +525,14 @@
google_ad_slot = "1523932882"; google_ad_slot = "1523932882";
google_ad_width = 120; google_ad_width = 120;
google_ad_height = 240; google_ad_height = 240;
//--> //- ->
</script> </script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</span> </span>
</div> </div>
</li> </li>
</ul> </ul>-->
<br /> <!--<br /> Might not keep this
<ul> <ul>
<li class="widget widget_text"> <li class="widget widget_text">
<div class="textwidget"> <div class="textwidget">
@ -539,38 +541,41 @@
</span> </span>
</div> </div>
</li> </li>
</ul> </ul>-->
<!-- This is what I want the end result of the recently uploaded pictures to look like <!-- This is what I want the end result of the recently uploaded pictures to look like- ->
<br /> <br />
<ul> <ul>
<li class="widget widget_text"> <li class="widget widget_text">
<div class="textwidget"> <div class="textwidget">
<h3>Recently Uploaded Pictures</h3><br /> <h3>Recently Uploaded Pictures</h3><br />
<a href="?img=3gyvry5.gif"><img src="thumbs/3gyvry5.gif" alt="3gyvry5.gif" title="3gyvry5.gif"/></a> <a href="?img=1607vhu.png"><img src="thumbs/1607vhu.png" alt="1607vhu.png" title="1607vhu.png"/></a>
<a href="?img=icbqp9.jpg"><img src="thumbs/icbqp9.jpg" alt="icbqp9.jpg" title="icbqp9.jpg"/></a> <a href="?img=icbqp9.jpg"><img src="thumbs/icbqp9.jpg" alt="icbqp9.jpg" title="icbqp9.jpg"/></a>
</div> </div>
</li> </li>
</ul> </ul>
---------- Make what's commented below resemble (in output) what happens above <!-------- Make what's commented below resemble (in output) what happens above-->
<br /> <br />
<ul> <ul>
<li class="widget widget_text"> <li class="widget widget_text">
<div class="textwidget"> <div class="textwidget">
<h3>Recently Uploaded Pictures</h3> <h3>Recently Uploaded Pictures</h3><br />
<p>Broken</p>
<?php // Not currently working <?php // Not currently working
/*$sql = "SELECT id, name FROM `recentpics` WHERE id = 1"; require('dbsettings.php');
$result = mysql_query($sql); $sql = "SELECT * FROM `recentpics` WHERE `id` = 1";
$row = mysql_fetch_assoc($result); if(!$result = $db->query($sql)){
die('There was an error running the query [' . $db->error . ']');
}
$row = $result->fetch_assoc();
if ($row){ if ($row){
$name = $row['name']; $name = $row['name'];
$name = explode("-", $name); $name = explode("-", $name);
foreach($name as $names){ foreach($name as $names){
echo '<a href="?img='.$names.'"><img src="thumbs/'.$names.'"></a>'; //echo '<a href="?img='.$names.'"><img src="thumbs/'.$names.'"></a>';
echo '<a href="?img='.$names.'"><img src="thumbs/'.$names.'" alt="'.$names.'" title="'.$names.'"/></a>'."\n ";
} }
}else{ }else{
echo "Error getting images from database"; echo "Error getting images from database";
}*/ }
?> ?>
</div> </div>
</li> </li>