I need help ,,, plz plz tell me how to

windows

Guest
hi all ,,<br />
<br />
I want the code which let me to put a pic in my web site and any body want to send it to his friend ,, do that by writhing his friend's Email ( under the pic ) <br />
<br />
I think that you will help me you I am waiting you help ,,<br />
<br />
bye bye<!--content-->ok, wont even try to decode that. I think that you should just look at a few sites like these:<br />
<br />
<!-- m --><a class="postlink" href="http://www.htmlhelp.com">http://www.htmlhelp.com</a><!-- m --><br />
<!-- m --><a class="postlink" href="http://www.w3c.org">http://www.w3c.org</a><!-- m --><br />
<br />
I think that you might need a JavaScript if I have decoded it right so have a look round here as well:<br />
<br />
<!-- m --><a class="postlink" href="http://www.javascript.com">http://www.javascript.com</a><!-- m --><br />
<!-- m --><a class="postlink" href="http://www.javascripts.com">http://www.javascripts.com</a><!-- m --><!--content-->english?<br />
spit it out boy.<!--content-->ok you want to make a "tell-a-friend" thing? and have the image in the e-mail?<br />
<br />
simple! you need a server side language for that.<br />
heres the PHP way:<br />
<br />
<?php<br />
<br />
mail("$friend1", "subject", "heres my picture: <!-- m --><a class="postlink" href="http://www.yourdomain.com/you.jpg">http://www.yourdomain.com/you.jpg</a><!-- m -->");<br />
<br />
mail("$friend2", "subject", "heres my picture: <!-- m --><a class="postlink" href="http://www.yourdomain.com/you.jpg">http://www.yourdomain.com/you.jpg</a><!-- m -->");<br />
<br />
mail("$friend3", "subject", "heres my picture: <!-- m --><a class="postlink" href="http://www.yourdomain.com/you.jpg">http://www.yourdomain.com/you.jpg</a><!-- m -->");<br />
<br />
mail("$friend4", "subject", "heres my picture: <!-- m --><a class="postlink" href="http://www.yourdomain.com/you.jpg">http://www.yourdomain.com/you.jpg</a><!-- m -->");<br />
<br />
?><br />
<br />
HTML form:<br />
<form method=post action="sendpic.php"><br />
Friend One:<input type="text" name="friend1"><br />
Friend Two:<input type="text" name="friend2"><br />
Friend Three:<input type="text" name="friend3"><br />
Friend Four:<input type="text" name="friend4"><br />
<input type="submit" value="Submit"><br />
</form><!--content-->
 
Back
Top