A "friend" of mine has a php page. I dont know much about web design. She bought the template and she wants to start a mailing list. The problem is that I dont know how to add the newsletter to the page. Can someone help me with this problem? I know how to add it to a regular html page, but I really dont understand dynamic pages. Any help will be appreciated. Thanks, George
Try the following: 1. Open php code in text editor and find place where script prints html-code to the page. Usually it is made with 'echo' function. 2. Determine a place where you want to place html-code of newsletter in webpage and find lines in php-code where this html is printing. Add near these lines command echo 'newsletter html-code comes here'; Code (markup): 3. Save php file. View page in browser.