Search results

  1. descalzo

    MS reversed in mice

    I want to hear from the PETA "never experiment with animals" types on this. Only so much can be done in cell cultures, etc. Eventually you have to test things like this on animals that are close enough to humans to show effectiveness and possible problems. Guess the PETA people want humans...
  2. descalzo

    Word Association

    fixture
  3. descalzo

    ^>v game

    ^ Brit < Brat v Brute
  4. descalzo

    ^>v game

    ^ Kiwi > Dodo v Penguin
  5. descalzo

    Count to 1 Million

    1551 is a palindromic number
  6. descalzo

    Guess Who Posts Next

    Nope. I guess someone who wears braces.
  7. descalzo

    Word Association

    bathroom
  8. descalzo

    PHP script MAC issue

    target="_blank.htm" The 'standard' is '_blank' to open a new window. Not sure if that is the issue. Google shows a few older problems with the 'target' attribute on IE for MAC.
  9. descalzo

    PHP script MAC issue

    404 means the server cannot find your script using the information the browser sent. I haven't heard of any differences between MAC and PC in this area, but post the code for the form that submits the info to the above script.
  10. descalzo

    MySQL server has gone away

    Split the input into nine 400 entry chunks and do them one at a time. Especially if your table has multiple indices, data entry can be bog down and you come up against timeouts. Another option would be drop the indices, enter the data, and then add the indices one by one using ALTER TABLE
  11. descalzo

    Word Association

    Wayne
  12. descalzo

    How come PHP is not insertting my data into MySQL?

    Using the debug message and expanding to sort of line up column name and value, $sql = ->INSERT INTO members ( fName, lName, address, city, zipcode, phone, email, cardNum, securityCode, expMonth,expYear ) VALUES ( 'dfgh', 'asdf', 'sdf', '', 'df', 'sdfsdf', 'sd'...
  13. descalzo

    How come PHP is not insertting my data into MySQL?

    Fair point. Did you put in the debug code so you can see what $sql really looks like?
  14. descalzo

    Word Association

    spaghetti
  15. descalzo

    need php/mysql help

    Try calling image.php on its own by just typing into the address bar: yoursite/path/to/image.php?from=23&to=44 That should help show warnings and other problems. And I see one quick problem... $im = @imagecreate(700, 400) missing a ';' , also why are you supressing...
  16. descalzo

    How come PHP is not insertting my data into MySQL?

    To debug, put an echo "\$sql = ->$sql <--" statement so you can see what mySQL sees as your query. And as mentioned, when you insert strings into mySQL, they must be 'quoted'.
  17. descalzo

    Word Association

    pan
  18. descalzo

    Pending Creating

  19. descalzo

    Problem with Account Upgrades

    Perl comes with the free website. You do not have to do anything to activate it. You do not need to upgrade. You might have to adjust some paths in any scripts you install to point to perl at /usr/bin/perl
  20. descalzo

    Word Association

    versitile
Top