Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. You need a web server configured to execute php. Most people starting out use pre-packaged software such as XAMPP, especially if your running on Windows. As for eBooks. I'm not sure there is such a thing. The Practical PHP wiki is a pretty good starting point though.
  2. As tipid is defined within several tables you need to tell mysql which one you wish to use in your where clause.
  3. $er does not exists outside of your class.
  4. In the past maybe, but these days, why bother? jQuery takes *most* of the hassle out of different browsers behaving differently for starters.
  5. In fact right here is a great page to start on. https://developer.mozilla.org/en-US/learn
  6. A nice start would probably be the Mozilla developer network. It's up to date, and covers quite a bit of what needs to be learnt.
  7. How exactly do you expect us to help?
  8. Truth be known, you wont likely start making any money until you become a proficient developer. If you haven't started yet, I would say that will be at least a few years off. Where to start? I would start by learning the client side languages, HTML, CSS and JavaScript. From there, you'll likely want to learn something server side, PHP is ideal.
  9. My main motivation for working in vim is the fact that we do allot of remote stuff via ssh on client machines at work. So, now I can use the same editor under all circumstances. Even when I work from home, it's so much easier to just connect to the vps, ssh in and open vim in a terminal. I don;t have to worry about the overhead of a Desktop.
  10. Because if we can see *how* your doing things we may be able to offer a solution.
  11. Firstly: Your question is in NO WAY related to PHP. So it's in the wrong forum. Secondly: We are not here to write code for people. Thirdly: Statements like "code doesn't work" don't help us help you. I'm not sure your ready for this place.
  12. Can we see the code that does this?
  13. Have you tried an IDE? I used to think a simple text editor was all I needed too, but then I tried an IDE. The only time I use a regular text editor now is just for real quick edits, or stuff that I don't want to make into a project in my IDE. IDE's tend to get in my way. All I use is vim with a few plugins: https://github.com/tpope/vim-pathogen https://github.com/tpope/vim-fugitive https://github.com/tpope/vim-unimpaired https://github.com/vim-scripts/taglist.vim https://github.com/vim-scripts/sessionman.vim https://github.com/vim-scripts/bufexplorer.zip https://github.com/tpope/vim-surround https://github.com/vim-scripts/FuzzyFinder
  14. This topic has been moved to HTML Help. http://www.phpfreaks.com/forums/index.php?topic=356360.0
  15. This topic has been moved to Third Party PHP Scripts. http://www.phpfreaks.com/forums/index.php?topic=356354.0
  16. Ajax makes a completely separate request. None of the variables in the page it is called from are available to it, only what you pass along to it.
  17. Your only passing two params (attacker_jaffa and defender_jaffa) to the php. ps: JavaScript errors show up in the console in firebug. Your code is terribly formatted, try and make you indentation more consistant and 2-4 spaces is enough. You should be sending back just relevant data via json, you can then use jQuery to build your markup to house the data in.
  18. So where is the relevant code your having issue with?
  19. Either way your doing too much work here. See glob.
  20. This topic has been moved to Miscellaneous. http://www.phpfreaks.com/forums/index.php?topic=356328.0
  21. I would seriously reconsider writing this yourself. All the big JavaScript frameworks make this type of thing simple.
  22. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=356314.0
  23. This topic has been moved to PHP Coding Help. http://www.phpfreaks.com/forums/index.php?topic=356175.0
  24. This topic has been moved to mod_rewrite. http://www.phpfreaks.com/forums/index.php?topic=356252.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.