can someone explain to me what kingmike meant. im currently having this problem right now
Uchechi What am I doing wrong....
I first of all just for testing purposes created a PHP page with the following code.
Lets call this file trackit.php
PHP:
echo "image.jpg";
I created a second file which was HTML. It had the following code below.
PHP:
<img src="trackit.php" lowsrc="2ndimage.jpg">
However, the image doesn't show up. Is this code correct?
kingmike If you are going to display an image through a php tracking script then you can't just echo the image name.
You have to use header and passthru.