Jump to content

jlhaslip

Advanced Member
  • Posts

    524
  • Joined

  • Last visited

Everything posted by jlhaslip

  1. You may need to parse the results. Use this as a hidden form value on the form and it will remember the referring page
  2. Any chance that you are seeing a 'cached' page?
  3. Try uploading a single Table at a time and add the indexing afterwards.
  4. jlhaslip

    The Olympics

    Must be a gorgeous place to live. And that comment is coming from the middle of the Rockie Mountains...
  5. jlhaslip

    Captions

    do a view page source on this link: http://jlhaslip.com/samples/image_display/image_display_single.html
  6. jlhaslip

    CSS Positioning

    I rarely use position absolute or relative. Generally use floats, margin and padding.
  7. http://jlhaslip.com/samples/image_display/index.html like that?
  8. http://www.websiteoptimization.com/services/analyze/
  9. alt="this is the alternate text" title="this is the title text"
  10. jlhaslip

    Here Document

    http://en.wikipedia.org/wiki/Here_document
  11. what does the error message say, exactly? Is it a wordpress error or a php header error?
  12. better post the form code and include the js info
  13. rename the new file to index.html, clear your browser cache and seek the homepage again.
  14. http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=pagination+scripts+php
  15. For future reference, here is a "Redux" form file that shows how to handle a form on a single page. > $page_title = 'redux'; // Check if the form has been submitted. if (isset($_POST['submitted'])) { // handle form script here } // End of main isset() IF. // Leave the PHP section and create the HTML form. ?> Build postal code file </pre> <form action="" method="post"> File: </form> Notice the 'hidden' submitted value that is used to determine whether to perform the php code. It ignores handling the form data and processing the php section unless the hidden value "isset", like on the initial presentation of the form. As noted above, sometimes it is preferable to use the multiple files.
  16. You need to validate your data differently. Check to see if the form has been submitted by checking for a 'hidden' form value instead of isset. Also, you need to throw an error if the form is not completed properly. In addition, you would be better off not using the REQUEST array. Use POST instead. Look at your form to see which action you are using.
  17. virtual, try the site at this link: http://www.websiteoptimization.com/services/analyze/ You could try it both ways and see if it makes a difference. There is also a Yahoo! service which will assist by measuring the parts of the page that are slowing you down, but I'll need a bit of search time in order to provide a link. I seem to have lost it. I go search right now. http://developer.yahoo.com/yslow/
  18. Each of your "paragraphs" should be within their own tags.
  19. http://host.sonspring.com/hoverbox/
  20. Or try this: http://www.trap17.com/forums/Print-Pdf-File-Php-t69564.html
  21. Add it to the bottom of the css file in the css folder css/style.css
  22. jlhaslip

    captcha in php

    http://recaptcha.net/ try that
×
×
  • Create New...