Home  >  Article  >  Backend Development  >  How to print pictures from database in php

How to print pictures from database in php

(*-*)浩
(*-*)浩Original
2019-10-15 10:52:173276browse

Whether it is website design, office system, or shopping mall, pictures need to be displayed on the web page. The pictures are extracted from the database. Next, let’s take a look at how to save and display pictures through the picture path:

How to print pictures from database in php

First, save the path of the image in the table. Note: the path starts from the WWW directory rather than from the disk root. / represents the WWW directory: (recommended Study: PHP video tutorial)

How to print pictures from database in php

The img in the table is the stored image path, which is the path under the WWW directory. Since the path is stored in the table , then we can connect to the database through PHP to obtain:

query($sql);
    foreach($arr as $v) // 遍历出各个列的内容
    {
        //图片用img标签获取路径,因为遍历出的img是$v[5],所以路径就是$v[5]
        echo "
{$v[3]}元
"; } ?>

In this way, we can obtain the image through the path, which is very convenient and efficient:

How to print pictures from database in php

The above is the detailed content of How to print pictures from database in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn