Hai
i am in my early stage of PHP
I have planed to intergrate some screenshot of our new campain in to the
newsletter.
so i just want to insert a picture on the 3rd line of code shown below.
Assume the picture name is ' image.jpg '
so please tell me the php code >
# if i am inserting the picture from a URL i.e http://www.abcd.net/image.jpg
or
# if inset the picture from local harddrive i.e. c:\image.jpg
Also which of the above 2 location is recommended to insert a picture?
Thank you.
[phpcode]
$body="Hello \n";
$body=$body . "Buy this T-shirt for only 1000$ \n";
$body=$body . "Screen Shot goes here !!";
[/phpcode]
|