Hi, Can someone teach me how to put an Image from PHP variable into table cell? The image read from MySQL into the PHP variable, outside the table, apears without problem but inside the table did not. Thanks
You cannot have the same script output both the text for the table and the data for the image. You need to use two scripts. For example, have script1.php output your table and then within the table have an img tag that says <img src="script2.php">, where script2.php is the script that outputs the image.