- Resizeing Images stored in mysql db

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

 



Hello list

I store images in a mysql table and use then in a web site.

Is possible to change the size of these images;


Following the code I'm allredy use.

 $query="SELECT photoxl FROM books WHERE books_id = '$books_id'";
 $result=mysql_db_query($database, $query, $conn) or Die
("...".mysql_error());
 list($photoxl)=mysql_fetch_row($result);
 $type = $photoxl_type;
 if (!empty($photoxl)) {
  header("Content-Type: {$type}");
  echo $photoxl;
 }

Thank you  in advance

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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux