Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. First your going to have to define "I want to access this application from a Website which is laready running online" in clearer terms.
  2. Linux doesn't have *.exe files. What command are you trying to execute?
  3. It might be free for non commercial use or something, you would need to check there site.
  4. This thread is way off topic. When you find the appropriate board, you will also find that this question has been asked and answered already as well.
  5. trq

    PHP Classes

    This is 2013, Github, packagist & composer are the now.
  6. A User class would generally be modeled on your data, with each database column being represented by a public property or (better still) a getter method. A fetchInfo() method doesn't really make sense.
  7. Codeignitor as a framework is dying if it isn't already dead. Why are you starting there?
  8. You need to pass $conn to mysqli_error() so that it will work. You might want to turn error reporting on also because not passing $conn to mysqli_error() should have generated a php error.
  9. You could (and should) use preg_match to match a pattern instead of exploding on a period.
  10. You should be looking for tutorials that teach you how to program, not how to do some specific task. Once you you know how to program, and can think, you wont need tutorials.
  11. Have you thought about asking the developer who wrote the code?
  12. Instead of returning html from your request return just the data as a json object. Using json, you can then update whatever you need client side.
  13. Sounds like you are trying to run before you learn to walk. Have you searched for any tutorials on the subject you are stuck with? We are here to help with code.
  14. trq

    memcache

    If php -m does not list memcache the extension is not installed.
  15. You are of course submitting the form?
  16. If that were the case all Wordpress sites would grind to a halt. You haven't provided enough information for us to answer your question.
  17. The location header requires a complete url. That is: http://somedomain.com/somefile?foo=bar
  18. Why would you need to know what your variable is named?
  19. We can't really help without seeing the relevant config.
×
×
  • 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.