我正在尝试从我的 SQL 数据库中检索已使用图像路径保存的图像。图像保存在服务器上。当我检索图像时,没有返回任何内容。
if(isset($_GET))
{
include_once "mysql_connect.php";
$text = $_GET['text'];
if($text=="")
{
$query = mysql_query("SELECT `URL` FROM `gallery` WHERE `img_text` LIKE '1'")
or die(mysql_error());
while( $rows=mysql_fetch_array($query) )
{
$search[] = $rows[0];
}
$result = array();
$result["result"] = 500;
$result["message"] = "Database Read Successfully";
$result["rows"] = $search;
echo json_encode($result);
exit;
代码示例用于在用户不输入值的情况下进行搜索。SQL 语句中的“URL”是存储图像路径的字段。图像路径值是完整的 URL http://example.com/images/test.jpg并存储为 VARCHAR(200) 。任何意见,将不胜感激