Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Everything posted by jlhaslip

  1. You will need to ask someone else about clearing the cache on your iE Browser. I don't have it installed. iMac spoken here.
  2. Try clearing your cache and then go back to the site. Might work then.
  3. Okay, use the php mail function instead. http://www.w3schools.com/php/func_mail_mail.asp orhttp://www.php.net I'll look to see if I have a contact page to do that and post it back here later today.
  4. <html><body><form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain"><h3>This form sends an e-mail to W3Schools.</h3>Name:<br><input type="text" name="name"value="yourname" size="20"><br>Mail:<br><input type="text" name="mail"value="yourmail" size="20"><br>Comment:<br><input type="text" name="comment"value="yourcomment" size="40"><br><br><input type="submit" value="Send"><input type="reset" value="Reset"></form></body></html> This form??? It sends an email to "someone@w3schools.com". If you change the address to reflect your owm email address, or your friend's address, the form will appear in your emails.Please note that there is no validating of the user input and therefore, no security in this form. I would suggest you search the net for a more secure email form. This form is okay as a Tutorial form, but it isn't as secure as you need it to be on the 'live' web.
  5. jlhaslip

    [CSS] Little Help

    No, I am not referring to your css being valid. I am looking at the xhtml being valid.Check the xhtml at this link : http://validator.w3.org/
  6. jlhaslip

    [CSS] Little Help

    There are 4 Doc type declarations and at least 2 sets of <body> tags on that page. 19 errors at the w3c validator. check to see if the wordpress included files each contain a DTD and remove them from the includes.It isn't even close to being valid, so fix those couple of things and then come on back. There is no sense in us trying to guess what is happening on that page until the most obvious errors are fixed.
  7. http://www.alistapart.com/articles/byebyeembedRead this article.
  8. Install XAMPP. php5 and php4 are available in the same install.
  9. z-index as a negative number??? or is it due to the Image being a background to an empty div??? Try placing the image into the div to see if that works, instead of a background image..
  10. The image needs to be contained within a block level element, like this: <div><img class="displayed" src="img/latestreads.gif" alt="latest reads" /></div>
  11. jlhaslip

    footer problem

    Have yu seen the man in blue site?http://www.themaninblue.com/writing/perspective/2005/08/29/
  12. You will probably need to learn enough php to use the mail() function and set a cc or bcc or a second to: address. Simple enough to do. Start with the php.net site and read up on the mail function.http://ca.php.net/manual/en/ref.mail.phpLet us know if you need any more info.
  13. Google on "php redux forms" and that should take you to an example of making "stickie" forms.
  14. jlhaslip

    Filter Help

    404 error on that link
  15. Primal, link us to your page or post the code in its entirety so we don't have to guess. And using tables for page structure is not the right way according to the w3c. Tables are for presentation of 'tabular' data. Images are not 'tabular' data.
  16. http://www.htmlhelp.com/reference/html40/e...es/special.html‘ = ‘the w3schools reference page says there is a problem using the apostrophe code in an IE browser, so maybe use the one above???http://www.w3schools.com/tags/ref_entities.asp' apostrophe ' (does not work in IE) '
  17. works in Netscape 7 on a mac. Have you tried clearing your cache and re-loading it?
  18. I'm sure that hotscripts.com will have a script for you to use.
  19. One big difference is that it forces you to become a better coder. The syntax is more strict, so you need to pay better attention to the code. It isn't any more difficult, just a new set of rules, is all.
  20. Check out the menu techniques found at http://www.cssplay.co.ukI'm certain that that site will have what you want. If not, see http://www.bonrouge.com
  21. Can you remove the authorization requirement on that link up there, please?and what is this all about" #master { background-color: #FFFFFF; position:absolute; width: 800px; height: auto; top:0px; left:50%; margin-left:-400px; } In particular, the last two lines of css...
  22. Create your html page using div's in the following order:left hand image: float leftright hand image : float rightbanner : margin:autonav links : margin:autoThen a div with the hr tag and clear:both in the css for that div.Here is a link to a page which is awfully similar, although not exactly as you want it.http://mlafever.jlhaslip.trap17.com/schools.html
  23. jlhaslip

    Sending e-mails

    Can you do a phpinfo() on the hosting account and see if the mail() is enabled or disabled?
  24. http://www.giveawayoftheday.com/Today's give-a-way might help you, but you only have about 7 hours to snag it.
  25. Create the page as an image using a serverside script or as a pdf and send that to their Browser.
×
×
  • Create New...