Search results

  1. marshian

    Warning: Cannot modify header information - headers already sent

    Maybe there's an invisible character, try saving your file as ASCI.
  2. marshian

    PHP Dynamic Image Script error.

    That's because FireFox owns ;) The image header has been send, so FF treats it as an image. Try opening that url with a crappy browser (such as there is IE) and it will ignore the header and show the text.
  3. marshian

    PHP Dynamic Image Script error.

    It says Character not found Maybe you've forgotten to fill in something?
  4. marshian

    Css?

    Either that or <style type="text/css"> /* CSS code here */ </style> in your head tag
  5. marshian

    php image display

    The line which causes this error is: <td><?php echo "<img src=\Images\Horse1.jpg"view.php?file={$row_rsdef3['http://xxx.co.uk/Images/Horse1.jpg']}">"; I have no idea what you're trying to achieve there, but there must be some quoting errors there. Maybe you ment to have <td><?php echo "<img...
  6. marshian

    PHP Dynamic Image Script error.

    Error is there: Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'blaze9_root'@'localhost' (using password: YES) in D:\wamp\www\sigs\mysig.php(23) : eval()'d code(1) : eval()'d code on line 28 Error on trying to connect in MySQL: Access denied for user...
  7. marshian

    html/css for a text hover box

    You have to do that with javascript. You should make one black box with no text in it, position absolute etc, and then use events to determine wether the box should appear, and put the right content in it.
  8. marshian

    PHP Dynamic Image Script error.

    Are you sure about the database? The error given is: Table 'blaze9_odinms.accounts' doesn't exist Maybe the mysql user has wrong permissions?
  9. marshian

    Mysql error

    What konekt means is: mysql users are not the same as x10 users. You have to set them up separatly in your control panel. Also don't forget to assign the user to the database with the right permissions, or it will fail again.
  10. marshian

    Yahoo rejecting mail sent through php

    *uses the almighty search function and finds the topics about the exact same thing* http://forums.x10hosting.com/programming-help/68339-e-mail-php.html
  11. marshian

    Error headers with php.

    ^ above post isn't really correct... You can't use php for errorpages properly, because that's part of the server config. But apache has given us .htaccess files which can change every errordocument for each directory. (If you put a htaccess in a certain directory, this affects this directory...
  12. marshian

    Advanced JavaScript for Reputation

    Javascript execution after a fixed period is done using setTimeout(). eg: document.onload = setTimeout(dostuff, 5000); function dostuff() { //Gets executed 5 seconds after page load } This example should work if i'm not mistaking Onclick is just adding the onclick field to a html element...
  13. marshian

    Mysql error

    Is this on x10? Because the normal username for a database is {yourcpname}_{name} eg. pokefan0_root . Also, the password must be correct. Have you even set a user up?
  14. marshian

    Advanced JavaScript for Reputation

    You can do it in one line of code! Just put all code on one line... (I've heard that before, I'm just too popular ;p)
  15. marshian

    Advanced JavaScript for Reputation

    AJAX consists of a server-side (usually php) and client-side (usually javascript) part. So you only will need a server with php and a user with javascript enabled.
  16. marshian

    Please briefly review my site

    Shouldn't this be in the Free hosting or Suspended accounts forums? He clearly has no idea about what got him suspended, and we aren't really capable of telling him what script caused it...
Top