Search results

  1. 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...
  2. 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