显示数据库中的数据 - 包括图像

时间:2010-10-05 14:25:52

标签: php mysql image

这是我的网页:

http://www.autoweek62.uni.cc/carprice.php

以下是它的源代码:

<?php 

    $dbname = "autoweek_auto1"; 
    $loginname = "autoweek_root"; 
    $loginpass = "PASSWORD (not my real one)"; 
    $dbhost = "localhost"; 

    echo('<html><body bgcolor="#FFFFFF">'); 
    echo('<font face="arial" size="+4"><center>'); 
    echo("Database $dbname"); 

    $id_link = @mysql_connect($dbhost, $loginname, $loginpass); 

    $tables = mysql_list_tables($dbname, $id_link); 

    $num_tables = mysql_num_rows($tables); 

    // store table names in an array 
    $arr_tablenames[] = ''; 

    // store number of fields per table(index 0,1,2..) in an array 
    $arr_num_fields[] = ''; 
    for ($i=0; $i < $num_tables; $i++) { 
        $arr_tablenames[$i] = mysql_tablename($tables, $i); 
        $arr_num_fields[$i] = mysql_num_fields(mysql_db_query($dbname, "select * from $arr_tablenames[$i]", $id_link)); 
    } 

    // store field names in a multidimensional array: 
    // [i] == table number, [ii] == field number for that table 
    for ($i=0; $i < $num_tables; $i++) { 
        for ($ii=0; $ii < $arr_num_fields[$i]; $ii++) { 
            $result = mysql_db_query($dbname, "select * from $arr_tablenames[$i]", $id_link); 
            $hash_field_names[$i][$ii] = mysql_field_name($result, $ii); 
        }      
    } 

    for ($i=0; $i < $num_tables; $i++) { 
        echo("<center><h2>Table $arr_tablenames[$i] </h2></center>"); 
        echo('<table align="center" border="1"><tr>'); 
        $result = mysql_db_query($dbname, "select * from $arr_tablenames[$i]", $id_link); 
        for ($ii=0; $ii < $arr_num_fields[$i]; $ii++) { 
            echo("<th>"); 
            echo $hash_field_names[$i][$ii]; 
            echo("</th>"); 
        } 
        echo("</tr><tr>"); 
        $number_of_rows = @mysql_num_rows($result); 
        for ($iii = 0; $iii < $number_of_rows; $iii++) { 
            $record = @mysql_fetch_row($result); 
            for ($ii=0; $ii < $arr_num_fields[$i]; $ii++) { 
                echo("<td>"); 
                echo $record[$ii]; 
                echo("</td>"); 
            } 
        echo("</tr>"); 
        } 
        echo("</table>"); 
    } 



    echo('</body></html>'); 
?>

显示,但我不确定如何以类似于此的方式显示它:

redbook.com.au/new-cars/results.aspx?Ns=p_Make_String|0||p_ClassificationType_String|0||p_Family_String|0||p_Year_String|1||p_SequenceNum_Int32|0&N=2994+2951+4294961316 + 4294843565&安培; TabId = 1407343

[没有链接,因为我不能在这里发布超过1个]

(虽然我的仅仅是制作,模型,体型和价格作为列表,而不是像上面的链接那么复杂!)

我用谷歌搜索了一些灵感,但尽管尝试没有任何远。我不是在寻找即时答案,但欢迎任何解决方案!

显示图像是最棘手的部分......我将JPG存储在服务器上,试图让它们显示是一个问题。

欢迎所有帮助!

1 个答案:

答案 0 :(得分:0)

您可以尝试制作一个只返回图像的单独脚本。

在该脚本中,您从数据库中检索图像,输出mime-type标头,然后输出原始图像数据。在主HTML输出脚本中,您只需编写<img src="getImage.php?id=1234" />