Jump to content

brendandonhue

Members
  • Posts

    65
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

brendandonhue's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. You'll run into an integer overflow at the point.
  2. PHP's built-in GD functions don't support this. You can use ImageMagick, or a PHP class to write animated GIFs.
  3. A filename ending in ".jpg" doesn't guarantee the file is actually a JPEG. Take a look at imagecreatefromstring()
  4. There's a big button at the top that says download. And you can probably change the cursors with CSS.
  5. Here's one, works in most browsers http://xaprb.com/blog/2005/09/29/javascript-combo-box/
  6. It's called a combobox, if you check on Google there are some implementations of it in JavaScript.
  7. urlencode() changes spaces to plus signs. Use rawurlencode() if you want spaces to become %20.
  8. Because the first parameter to preg_match should be a string and you're giving it an array.
  9. [quote author=mgallforever link=topic=116102.msg472869#msg472869 date=1164331334]Use thorpes. [/quote] Out of curiosity, why that one?
  10. [code=php:0] if(ctype_alnum($username)) {   //valid } [/code]
  11. Or not...they will freeze your account if you do anything to the ads.
  12. Google doesn't like people messing with their AdSense codes, I wouldn't recommend trying to change anything in them.
  13. [code=php:0] print_r(glob('*', GLOB_ONLYDIR)); [/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.