我正试图显示一个图像以及数据库中的其他信息。
<?php
mysql_connect("localhost","111","222") or die("Could not connect to localhost");
mysql_select_db("movies") or die( "Could not connect to database");
$result = mysql_query(
在我的Java EE应用程序中,有一个上传图片的功能。上传图片时,我将image path保存在MySQL数据库中。
现在我想在我的MySQL database table中使用image path that saved when uploading the image在网页上显示上传的图像。
我怎么能这样做呢?
我想将图片存储在mysql数据库中。图像通过android发送的问题是,我真的不知道用哪种方法在msql数据库中存储图像。
1. Access image from file
2.Store image in filesystem and store the url in the database
3.Store the image in the database
在存储这些图像之后,我想把这些图像放到PHP文件中。
我想知道哪种方法是最好的,怎么做呢?