Search results

  1. marshian

    Javascript timer with php. Help Please. :D.

    I don't think that's his problem, I think he means that the user could refresh the page manually to receive the wood immediatly... How about you calculate the time at which the user should get his wood, and store that in your database? The next step would be calculating the time difference in...
  2. marshian

    Page redirecting to blank page

    Try this code: <?php header("Location: about:blank"); ?>
  3. marshian

    E-mail In PHP

    You have no idea how close he is... http://bestdeveloper.blogspot.com/
  4. marshian

    Can I Make The Page Load First Then The Adverts?

    You could use AJAX... Page loads (no adds), done loading -> trigger a code to show adds -> adds load -> page is fully loaded The problem with that is: 1. The user can disable javascript -> no adds 2. If you must put adds (add-enchanted hosting on x10 for example), you have to use the exact...
  5. marshian

    email

    This code has NO problems at all... (I'm talking php errors, not html errors...) <html><head></head><body><br><br><center>E-Mail was <b>not</b> successfully sent!</center>"); die("<br><br><br><center>E-Mail was successfully sent!</center>"); } ?&gt; <center><font face="tahoma" size="6">...
  6. marshian

    E-mail In PHP

    It often happens automaticly send mail is seen as spam because the domain and the server that does the actual sending don't match. (for example, me@thissite.com that's actually send from anothersite.com) So you could try to make the sending e-mail correspond to the sending server.
  7. marshian

    How does Jabber based Chat client works ??

    I don't think it's possible not to use a continious request, and it will certainly be the easyest...
  8. marshian

    Help.

    Usually there's some line of code near that tells you what to fill in... But I suppose in this case you'll need to fill in (in the first) the mail address where you want to send a mail from, and in the second the SMTP server, I don't know what you should fill in there, but you could try "localhost".
  9. marshian

    Equaling in php

    That is because you don't send anything, and nothing is always equal to nothing... You need to use form tags: <html> <head> </head> <body> <form method="post" action="thispage.php"> <table> <tr> <td>Username:</td><td><input name=user></td> </tr> <tr> <td>Password:</td><td><input type="password"...
  10. marshian

    help needed in formating my PC

    lol, I didn't know that thing was bootable xD
  11. marshian

    help needed in formating my PC

    I think you'll need to boot into some bootable disk (cd, floppy, other hd, ...) because you won't be able to fully access your main disk when you're working on that one... Then you have to remove all partitions from your hd, and format it. Finally just reinstall windows and you're ready. If you...
  12. marshian

    Hey every one! I need Help!

    I don't think anyone is going to build an rpg for you, you'll need to be a little more specific... What code are you having problems with?
  13. marshian

    [PHP Tut] Make your own CAPTCHA

    "Good enough" does not exist, either you do it all right, or you just don't do it :p
  14. marshian

    ram, processor,or harddisk.

    How about you upgrade the thing that gives you the most headaches?
  15. marshian

    AJAX Refresh problem with IE

    Perhaps there's a problem in the xml object, but it's really hard to tell without any source code...
  16. marshian

    CLASS or ID?

    As far as I know, using an id to determine what layout an object should have is previlleged over the object's class (if your class sets color black and id sets color white, it will be white i think), which could make id's more relieable, but considder the fact you usually have more then one...
  17. marshian

    java script help

    FF encounters 1 error on that page: Error: missing ) after condition (line 209) Maybe it has something to do with that... But if it works on one site, but not on the other one, you should make sure you've used exactly the same code there are no bugs in your code you've used the right url...
  18. marshian

    [PHP Tut] Make your own CAPTCHA

    I think you don't get my point... For example you could have a page captcha.php, which shows a captcha and stores the $str under a certain session, and the form redirects to solvecaptcha.php, which checks wether you've given the right $str. A session-hijacker could go to captcha.php, see what...
  19. marshian

    Rounded Corners

    The problem is there's a maximum size for the boxes, so you have to set limits... and he specificly asked no boxes, which is impossible, but if you use roundedcornr, you're stuck with a certain size, which is even worse...
  20. marshian

    PHP Syntax Question

    I'm not really good in explaining stuff, but here's something I found on the internet: Taken from: http://www.onlamp.com/pub/a/php/2001/03/08/php_foundations.html
Top