Search results

  1. marshian

    integrate pdf reader in my site

    flash <embed>'s rely on the flash plugin, so you must already have it before you can view them.
  2. marshian

    how to make a page default

    I'ld still suggest using php, since the user can disable javascript... and it's easyer in php ^^
  3. marshian

    integrate pdf reader in my site

    As far as I know, the user must have an application installed to view it, or it won't work... Note: both viewers are freeware, so just redirect him to adobe.com :p
  4. marshian

    enctype not working....

    If all errors are 404's, then why is it complaining about a 500?
  5. marshian

    enctype not working....

    In that case, go to your cp and give us the details about those errors...
  6. marshian

    how to make a page default

    An example (JUST AN EXAMPLE, DON'T ACTUALLY USE THIS!) If you'ld make this "index.php" <?php if(isset($_GET["color"]) { setcookie("color", $_GET["color"]); include $_GET["color"].".php"; exit; } if(isset($_COOKIE["color"])) { if($_COOKIE["color"] == "red") { include "red.php"; exit...
  7. marshian

    enctype not working....

    Read this page: http://www.php.net/manual/en/language.operators.logical.php then, when you understand why, change that "or" in your if-statement to "||".
  8. marshian

    What is happened with my website?

    Actually x10 is the most relieable free hosting service I've ever met. It's just that when you have a problem with a server, it's usually not easy to solve it.
  9. marshian

    Passing vars from parent to iframe

    Actually I think he's showing off :p echo "<td> <a href=\"javascript:loadintoIframe('myframe', 'iframe2.php?name={$row['name']}')\">" . $row['name'] . "</a> </td>"; is exactly the same as echo "<td> <a href=\"javascript:loadintoIframe('myframe', 'iframe2.php?name=".$row['name']."')\">" ...
  10. marshian

    Html forms not working-cgi prob?

    I know nothing of perl at all, but are you sure the root dir is public_html? as far as i know, public_html is /home/yourname/public_html
  11. marshian

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Alex Mac because he banned me!
  12. marshian

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Mitch for being offline at the moment.
  13. marshian

    What is happened with my website?

    You have to upgrade your php version to intermidate. go to http://www.x10hosting.com/account
  14. marshian

    Disable Renavigation to same page ??

    Just a little remark, don't use <meta> refresh, the user can disable this in his browser. The better alternative is once more, php. //Page to redirect to. $page = "http://www.google.com"; //Html response //eg. 404: page not found //307: temporarly redirect, etc $htmlcode = 307...
  15. marshian

    About making a random image.

    Actually I ment every possibility... You could use a bunch of font/text commands on your image, or you can put one image on top of another, it's all the same. But just in case you're working with multiple images to generate a dynamic image, directories will make it maintainable.
  16. marshian

    !!!! The NEW Biggest thread !!!!

    I think XP SP3 isn't out yet, but in bèta testing (not sure) I know Vista SP1 is out, but you might have to install every other possible update before you can actually install SP1.
  17. marshian

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Smith6612 because he banned ivan_andrei_09 because he isn't too lazy to type a long display name.
  18. marshian

    Count Down

    Yes, I realised this, but he said very simple, so I supposed he just wanted an estimation.
  19. marshian

    HTML and CSS problem

    Thanks, I downloaded it right away! And I found the IE version too: Microsoft Internet Explorer Developer Toolbar
  20. marshian

    Count Down

    Add this to your <head>: <script type="text/javascript"> //How much time there is on the timer when the page has loaded? (in seconds) var timeleft = 20*60 //How much time does the timer have to reset to? (in seconds) var resettime = 20*60; function countdown() {...
Top