Recent content by sjamms

  1. S

    php/html spreadsheet style form?

    If I understand correctly, you want 10 of these forms on one page? That would not be good design. Rather, do something more efficient such as add a line to allow the user to select the day to put it on. Table headings can be added using a <th> tag. To have the form auto-fill with the user's...
  2. S

    How to write HTML/PHP code for posting comments from customers?

    You're going to find that this is not as easy as you might think. You can use a CMS (Content Management System) that has the code already developed for you, just integrate into your website. Or you can write your own from scratch. This will require a database to store the comments. Be sure to...
  3. S

    PHP loop does not end?

    I'm developing a calendar for a client. I want to list all the events for a certain day (can be more than one event per day), and here is the code I have for that: //Limit a MySQL query to selected month only. $low = mktime(0, 0, 0, $month, 1, $year); $high = mktime(0, 0, 0, $month, $max_days...
  4. S

    Regexp not working in PHP?

    I am trying to validate my form input on my site using a regexp. I'm using RegexBuddy to create and test it - and it works... in the program. When I transfer it to my PHP file, it doesn't. The field is for their name, therefore I want to allow only: Aa-Zz, 0-9 (for "the 3rd", etc. if desired), a...
  5. S

    Installing a script to online browser games?

    Is it Javascript? If so, use the Greasemonkey addon for Firefox, found here: https://addons.mozilla.org/en-US/firefox/addon/748
  6. S

    Image load time reduction?

    Why not create separate thumbs? Make a macro in PS to automate the process. You are essentially making the viewer load every single full size image on that page. The only way around it is to create separate thumbs.
Back
Top