Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. trq

    update cart

    Your code is unreadable. Indent it properly and post it within tags.
  2. Sorry but your question makes little sense.
  3. You must have missed this? http://www.phpfreaks.com/forums/index.php?topic=244703.0
  4. trq

    HTML5

    http://google.com
  5. Your not doing anything with the response. It's been a long while since I've used jQuery, but I suggest you have another look at there examples. You probably need to use a callback of some sort.
  6. Not enough detail provided I'm afraid.
  7. You need to use an INT type if you expect it to sort properly. VARCHAR is for text.
  8. $_SESSION is an array. It can store everything an array can, but I definitely would store any resources in it. Anything that can be safely serialised is safe.
  9. CURL wouldn't make any difference. It is very simple for someone to intercept there own network traffic. I'm sure there are options around, it's just not something Ive really thought about.
  10. Sorry, but your post makes little sense.
  11. This line: $.post("/footer.php", {"locationID": rel}); should read: $.post("/footer.php", {"locationID": post_id}); You'll then also be expecting the data in $_POST['locationID'], I'm not sure what your expecting in $_POST['a'].
  12. Exposing your username and password via the web sounds hazardous IMO. It would be simple for someone to get your credentials that way.
  13. This topic has been moved to Other Programming Languages. http://www.phpfreaks.com/forums/index.php?topic=353060.0
  14. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=353056.0
  15. Why don't you store the username and password locally?
  16. No idea what you are talking about sorry.
  17. I hinted at it earlier but you really need to post some relevant code.
  18. Obviously if your echoing $post and it is displaying that error then $post is an object. We wouldn't know because you haven't shown us that code. Where is $post defined?
  19. What does view source display?
  20. You could do it that way, but it isn't how it should be done. You should read this: http://www.phpfreaks.com/tutorial/data-joins-unions
  21. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=353002.0
  22. http://api.jquery.com/jQuery.ajax/
×
×
  • 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.