Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=346794.0
  2. Of course you need to call the function for it to be executed.
  3. This topic has been moved to Application Design. http://www.phpfreaks.com/forums/index.php?topic=346762.0
  4. Probably not really what your wanting to hear but we resolved this same issue where I work by selling our software as part of an entire system. ie; We actually sell and then maintain the server OS and all the software installed on that system. Of course this open up a whole new can of worms as we have to actually maintain these systems now. Everything from our software updates to security updates for system software. While technically our clients could mount a drive from these servers and gain access to the software that way, there not generally technically minded enough to do so (and of course this would break there license agreement that they have payed a substantial amount for).
  5. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=346788.0
  6. You should look into the Expect extension: http://www.php.net/manual/en/expect.examples-usage.php
  7. This topic has been moved to Application Design. http://www.phpfreaks.com/forums/index.php?topic=346750.0
  8. What steps have you taken to debug the problem? Without knowing more about the specifics of how the framework your using works it's pretty hard for anyone to help you. It's impossible for us to replicate the issue for instance.
  9. You don't need to escape special chars within an md5 hash because the special chars that are harmfull wont exist in the hashed data.
  10. The arrays should likely be made into models. foreach loops are fine in Views, but not allot else. There are many, many tutorials around on how to organise your code within an MVC, there should be plenty on using CI in particular.
  11. Views should have minimal php. Controllers should do not much more than egt data from the model, and send it to the view. The Model is where your data should be defined.
  12. To submit data to the server without refreshing the page you would need to use Javascript.
  13. I really think your overcomplicating something which is quite simple and using extract to inject variable into the current scope is going to lead to nothing more than code that is highly unmaintainable. Whats wrong with simply returning the data you need and storing it in the normal way?
  14. Those exe's aren't meant to be executed directly. They are php's cli. Have you tried reading the install instructions that come in the zip?
  15. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=346709.0
  16. Is $issue an array? Your really not giving us enough detail to be able to help much.
  17. You'll get over it pretty quickly when you get a challenging job and realise that you are once again a newb.
  18. You know that programmers generally indent there code so that it is readable?
  19. What exactly is the point? To collect worms? I mean really.
  20. If you really think this is a bug, why not report it so it can be fixed? Better still, why not try and fix it yourself and submit a patch?
  21. The rewrite rule you posted could not possibly be responsible for doing what you have described.
  22. include[/m] is used to include code into other code. I assume that is what your talking about.
  23. Why don't you try coding it then and come back when you have a specific question?
  24. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=346675.0
×
×
  • 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.