Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Clicking a link makes a new request to the web server. Thats how the web works. If you want to change content without refreshing the entire page you will need to use Ajax.
  2. You need to track wether of not the user is logged in, so no, html cannot do this. What is your issue with using php? It can easily serve static content if that's what you need.
  3. Firstly, HTML is not a scripting language, it is a simple markup language. As for your questions, of course you can. Practically all web applications are made with a mix of client side scripting (JavaScript) and some server side language (ie; PHP).
  4. Or, check out: http://proemframework.org/docs/signal-component.html Yes, I'm pimping my own framework, but it is a decent example of the concept.
  5. You would likely want to validate this with JavaScript and PHP.
  6. Sending email from one server and making it look like it has come from another mail server will usually end up with the email either going to trash, or not being excepted at all.
  7. trq

    Confused

    Have a look above the Post / Preview buttons.
  8. Your going to need to post your current code. In tags please.
  9. You don't select any field from the database called "filename".
  10. This topic has been moved to Other Libraries and Frameworks. http://www.phpfreaks.com/forums/index.php?topic=359340.0
  11. Your form element names are different to that used in the php code.
  12. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=359389.0
  13. And where exactly is that code is relation to the javascript?
  14. finished = <?php echo $somephpvar; ?>;
  15. Can you post your php code?
  16. It helps if you describe your problem.
  17. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=359385.0
  18. You should use jQuery's ajax() method instead. It has a statusCode event which is prefect for this situation. See http://api.jquery.com/jQuery.ajax/
  19. From memory IIS6 does not support url rewriting. You need at least IIS7.
  20. Did you read my last two replies?
  21. Cool. What is the problem?
  22. Actually, looking at it again, there would be an unclosed <font> tag. Fix that and you should be golden. Better still, don't use font tags, they are pretty 1995.
  23. My code should work fine. What do you see when you view the source of the page?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.