Hi,
I have this script:
<?php
mysql_connect(" host", "user", "pass");
mysql_select_db ("database") ;
$query = "select * from table";
$result = MYSQL_QUERY($qu ery);
while($myrow=my sql_fetch_array ($result)){
echo "<img src=".$myrow['bin_data']."><br>";
};
?>
I can't get the output from the "bin_data" to show as an image ( which it
is ).
Can anyone tell me what's wrong?
Ricki
I have this script:
<?php
mysql_connect(" host", "user", "pass");
mysql_select_db ("database") ;
$query = "select * from table";
$result = MYSQL_QUERY($qu ery);
while($myrow=my sql_fetch_array ($result)){
echo "<img src=".$myrow['bin_data']."><br>";
};
?>
I can't get the output from the "bin_data" to show as an image ( which it
is ).
Can anyone tell me what's wrong?
Ricki
Comment