getting there- just need to output the data

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I have retireved the unique gallery and all the data from the row. I now 
need to output the data ($row['bin_data']) as a jpg.

<?
include("includes/config.php");

$link = mysql_connect($host, $user, $password) or die ('somethng went 
wrong:' .mysql_error() );
  mysql_select_db($dbname, $link) or die ('somethng went wrong, DB error:' 
.mysql_error() );

$query = "SELECT DISTINCT gallery FROM thumbnails";
$result = @mysql_query( $query,$link );

while ($row = @mysql_fetch_assoc($result) ) {

$gallery_id=$row['gallery'];

$query2 = "SELECT * FROM thumbnails WHERE gallery ='$gallery_id' LIMIT 1";
$result2 = @mysql_query($query2);

while  ($row = @mysql_fetch_array($result2, MYSQL_ASSOC)){
echo $id=$row['id'];

//i want to output the jpeg here


}

}

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux