Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. You could program a web API on the server that has the database, but it would be a suboptimal solution compared to having direct access.
  2. YOUR SHIFT KEY SEEMS TO BE STUCK.
  3. May I ask why?
  4. The user [profile]xa0s[/profile] does exist. Anyway, welcome back.
  5. Apart from the IP address you don't really know anything else than what the client tells you itself.
  6. The Java Runtime VM doesn't compile the code when you execute .class files. At that point it has already been compiled.
  7. Maybe your computer is just slow?
  8. Have a look at this: http://vim.wikia.com/
  9. There is a GUI version for it. It's called GVim.
  10. There is also a vim plugin for Eclipse.
  11. Mine would be Zend Studio, NetBeans and vim (in no particular order).
  12. This is a continuation of this topic: http://www.phpfreaks.com/forums/index.php/topic,54859.0.html
  13. If you want advanced stuff, you have to move away from PHP book and buy books that deal with general programming stuff. Programming is not just "programming" though. There are many different things you might want to focus on. You could read about algorithms and make your stuff run fast. You could read about things like semantics and lambda calculus to get a better idea of what exactly a programming language is. Maybe things like computability would be interesting, i.e. what is it possible to compute, and can it be done within reasonable time (has a lot to do with algorithms as well). Maybe you would find concurrency and making things run in parallel interesting. Or you might be interested in how to make well designed applications, or how to manage programming projects. There are so many things to programming that it's difficult suggesting an "advanced" book. I might suggest Introduction to Algorithms, but if algorithms aren't really your thing, you might find The Pragmatic Programmer more interesting. Both books can be said to be related to programming, but they are very different books.
  14. We would encourage everybody to introduce themselves here so we might get to know you and "old" members are very welcome to introduce themselves as well.
  15. I've got a VPS. A dedicated server would be overkill for my needs.
  16. That's quite a surprise to me. As I said, it is something I would expect from any web host. Then again, I've never purchased shared hosting.
  17. I would expect all webhosts to have that.
  18. That doesn't necessarily mean you cannot write a TDD primer.
  19. What do you mean with "doing .htaccess on a folder"? .htaccess files just contain Apache configuration directives. Not only does it have nothing to do with PHP whatsoever, but it can all be looked up in the Apache documentation.
  20. Here is yet another alternative: http://devzone.zend.com/article/4571-Fetching-multiple-random-rows-from-a-database
  21. A sub query returns a result, like all queries do, and you can use that result as a variable in your query. That's it, essentially.
  22. http://web.archive.org/web/20080209154336/http://www.phpit.net/article/simple-mvc-php5/
  23. A login script is essentially so simple that it's not even worth dedicating a tutorial for that. Stuff involved is essentially form processing, database access and sessions/cookies. We have a tutorial for sessions and cookies and we have one for database access and another one focusing on joins and unions. Then you have form processing, but that's fairly straightforward. You simply read from the $_GET or $_POST superglobal. You might also be interested in this blog post that talks about breaking a script/application down into logical elements the same way I just did.
  24. You mean like this? http://www.phpfreaks.com/tutorial/debugging-a-beginners-guide
×
×
  • 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.