Jump to content

Resize image to thumbnail


robonhigh

Recommended Posts

Hi, I am trying to re-size the images to thumbnail size (50px) in this code I have but I'm not quite sure where to begin.

 

The php its self generates random products from a database and displays and image (100px) and the image title which is a link to the product itself.

 

Here's what I've got:

 

<div class="skin_fenavh">Random Item</div> 

<div class="skin_fenavmini">

 

<?php

$host  = 'localhost';

$dbUser = 'dbuser';

$dbPass = 'dbpassword';

$db = 'dbname';

 

mysql_connect("$host", "$dbUser", "$dbPass") or die(mysql_error());

mysql_select_db("$db") or die(mysql_error());

 

$result = mysql_query("SELECT id,imgsm,name FROM gbu0_prod order by rand() LIMIT 1" ) or die(mysql_error());

while($row = mysql_fetch_array( $result )) {

print "<a href=\"/linux/" . $row['id'] . ".html\"><img alt=\"\" src=\"media/gbu0/prodsm/" . $row['imgsm'] . "\" /><br />" . $row['name'] . "</a> ";

}

?>

 

</div>

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.