Display a single image from folder using php

697 Views Asked by At

i am having a issue on my osclass theme. I want to display a particular image from my folder manually. The images are in the folder and i am using this function to display the image, could someone help.

  if(!function_exists('aiclassy_draw_ad')) {
        function aiclassy_draw_ad(){
            echo '<div class="advertise_area">
I want my image to be called here
           </div>';

            echo ' <br /> <div class="advertise_area">

            </div>';
              echo ' <br /> <div class="advertise_area">

            </div>';
              echo ' <br /> <div class="advertise_area">

            </div>';

        }
    }
2

There are 2 best solutions below

9
On

Is it what you need?

echo '<div class="advertise_area">
          <img src="http://morelook.com/content/uploads/2011/07/advertise_here_250x250.png" alt="" />
      </div>';

EDIT

Based on OP comment: JSFIDDLE

Turn off your adblocker if you have.

1
On

You should place an image tag in your div tag, like this:

  if(!function_exists('aiclassy_draw_ad')) {
    function aiclassy_draw_ad(){
        echo '<div class="advertise_area"><img src="image.jpg" alt="" /></div>';

        echo ' <br /> <div class="advertise_area">

        </div>';
          echo ' <br /> <div class="advertise_area">

        </div>';
          echo ' <br /> <div class="advertise_area">

        </div>';

    }
}