I hope someone replies to this.....
I want to use this function in a dynamic page ie. the images are loaded from a database using a php script so I can't use the print function to display the image as suggested in prevoius threads. anyone know how to achieve this..
I've put the main part of the code below,
PHP Code:
echo "<table class=\"table_test\">\n";
}//end of first if
//Display each record
echo "<tr>\n";
//get the image size of the picture and load it into an array
$mysock = getimagesize("rivcms/news/images/image_{$row['upload_id']}06.jpg");
//display the resized image on the screen.
echo "<td><img src=\"rivcms/news/images/image_{$row['upload_id']}06.jpg\" WHAT DO I DO HERE imageResize($mysock[0], $mysock[1], 75) />\n";
echo "<td>{$row['t']}</td>\n";
echo "<td>{$row['d']}</td>\n";
echo "</tr>\n";
$first = FALSE; //One record has been returned
}
thanks!
Bookmarks