I've created a small image generated with php on my server. In the tutorial I'm working on it says that to display it in a html page use a simple image tag format:
<img src="image.php" height="200" width="200" alt="Sales Are Low!!">
When the image script is called on directly( it displays well in the browser, but when I try the above method in a html page it won't load.
Are there any configuration settings with php that relate to this?
<img src="image.php" height="200" width="200" alt="Sales Are Low!!">
When the image script is called on directly( it displays well in the browser, but when I try the above method in a html page it won't load.
Are there any configuration settings with php that relate to this?