hi, i am new in the arena of Web-designing & Web-management. I know HTML, Frontpage & CSS. I have a few Questions, please help me out. I'm sorry if some of them are stupid questions. 1). What language should i learn to create/put a "Tell a friend" box in my webpage ? 2). How do I ? Save a users email-id when he subscribes for a e-magazine ? 3). Redirect user to a different site ? Is all this difficult to do ? Hoping some people to help me out. Thanks in advance
For the first two questions, there are already pre-made scripts out there. Have a look at www.hotscripts.com As for the third question: <?php header('Location: http://www.example.com'); exit(); ?> PHP: And: www.php.net/header
To send a page to a friend it depends on how you want to do it and exactly what needs to be accomplished. The easiest ways are going to be javascript or php. Here's a few examples. Personally, I would use a php script because the javascript version wont work if the visitor has javascript disabled. Also, you will want to figure out some sort of a message threshold filter so the form isn't used for spam. Javascript: http://javascript.internet.com/miscellaneous/e-mail-this-page-script.html http://simplythebest.net/scripts/DHTML_scripts/javascripts/javascript_119.html PHP: http://www.plus2net.com/php_tutorial/tell_friend.php http://www.tamingthebeast.net/articles3/tell-a-friend-script.htm