|
Php/mysql display BLOB field data?
does anyone know how to display the data that is kept in a BLOB field format? I can only find examples that should how to display an image if saved to BLOB format type but nothing on how to display text.
there should be data for two dropdown menu's and two textbox stored in m_addtn field
<?php
$res = mysql_query("SELECT m_addtn FROM s_viz WHERE m_id = '39'");
$result = mysql_fetch_assoc($res);
echo $result;
?>
|