Search results

  1. P

    Should a Furry express their pride on a bike paintjob?

    Furry pride's a little cliché but I think you should go for the whole furry themed decal. Sounds good. :3
  2. P

    Should a Furry express their pride on a bike paintjob?

    Furry pride's a little cliché but I think you should go for the whole furry themed decal. Sounds good. :3
  3. P

    How do I hide a peice of html code from internet explorer so only mozilla...

    IE has a method of hiding/enabling code based on browser version but can also be used to ignore code. <![if !IE]> <link rel="stylesheet" type="text/css" href="css/not-ie.css" /> <![endif]> Internet Explorer will ignore this while all other browsers will ignore the if tags (since they're just...
  4. P

    How do I make a drop-down list action handler (on change) with PHP?

    You don't, you do it with JavaScript. Here's an example of the HTML you'd use to call a function when a drop down box is changed <select onchange="doSomething(); "> <option value="0" >Option 0</option> <option value="1" >Option 1</option> <option value="2" >Option 2</option> </select>
  5. P

    php ajax and Firefox mozilla?

    It might be that you're using innerText - I can't see what you've put here - document.getElementById("txtHint").inn… - as Yahoo has truncated it. If you are trying to use innerText then that will be the issue as it is an IE only property. Use innerHTML instead.
  6. P

    php ajax and Firefox mozilla?

    It might be that you're using innerText - I can't see what you've put here - document.getElementById("txtHint").inn… - as Yahoo has truncated it. If you are trying to use innerText then that will be the issue as it is an IE only property. Use innerHTML instead.
  7. P

    PHP Weird Error Question HELP?

    It's likely that you either left whitespace before your opening <?PHP tag, or you tried to send a header using either header() or setcookie() after calling print(). You can either modify your script to ensure that you only call header modifying functions before using print() OR you can use...
Back
Top