Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Yep, you seem completely lost. Have you tried reading the manual?
  2. PHP is not executed as it comes out of a database. Nor is it a good idea to store code in a database if you want it executed.
  3. Programs only do what you tell them to do. Your calling the alert method.
  4. I would pull everything you need to change out and into a separate file. Then include that file into the file it is currently in. Once it's in a separate file it will be very easy to manipulate as it's just an array. <?php include 'somefile.php'; // manipulate the $users array all you need. file_put_contents('somefile.php', "<?php\n" . var_export($users)); ?>
  5. You should have full control of a vps. If you don't, move.
  6. Its just a single image (that doesn't even fill a widescreen monitor mind you). There is no "web design" to critique.
  7. trq

    Php

    Sure, whats' your question?
  8. So your issue is with jQuery? This is the php help forum.
  9. How do you expect us to help without a description of your problem?
  10. For smaller less complex applications ORM's are great. Once things start to get more complex however, I have found they just get in the way. They make the simple things even simpler and the complex things more complex IMO.
  11. Do you have a question? Also, if your going to post code, we have tags. Use them.
  12. Have you looked at the manual? date. It is surely quicker than asking here and waiting for a response.
  13. I don't think so. I'm not a Zf user, but I don't recall anything like that existing in zf2.
  14. http://laravel.com is the framework of the moment IMO. L4 is going to be rela nice, but v3 is solid. Codeignitor is not something I would ever consider sorry.
  15. What version of ZF have you downloaded, and what version does the tutorial refer to? I don't think there is a such a thing as zf.bat in the current versions.
  16. Just use json_encode to format your data into a format that Javascript understands.
  17. Awesome. You need to be a lot more specific I'm afraid.
  18. You will want to loop through your array and make a string from it. An array is a data structure, not something that can be simply emailed.
  19. You would need to write logic into your code to load template data conditionally.
  20. If your trying to execute php code you have stored in your database your doing it wrong.
  21. id's are meant to be unique. Your question is not php related.
  22. Move this: var total = 0; out of the function.
×
×
  • 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.