Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Works as expected in Postman. https://www.dropbox.com/s/obmu6zdl7xx4nfj/Screen%20Shot%202014-05-22%20at%201.25.36%20pm.png
  2. Make sure that $row is what extract expects, an array. We need to see the code that creates $row in order to be of more help.
  3. Also, $_POST['Vendor'] os not the same as $_POST['vendor']
  4. As Jacques1, you would be better doing this within your queries.
  5. This is a "Help" forum, not a "Do" forum. You are in the wrong place at the right time.
  6. Sorry, but very little of that post makes sense.
  7. What exactly does "not working" mean?
  8. Your code is unreadable.
  9. What exactly does "no show" mean?
  10. Just because you can retrieve a token doesn't mean it will be valid when you go to use it. Tokens should only be valid for that same session.
  11. Do you have a mail server installed and configured locally? mail doesn't just send itself.
  12. It's pretty self explanatory. The user named ODBC does not have permission to access the database server from localhost without a password. If they are not the credentials you think your using (and they shouldn't be) then something is wrong with the code you have for making a connection to the database.
  13. The error say what is undefined? Nowhere in your callback is `this.vehiclelog_plate` or any of its friends defined. but you haven't exactly given us much information.
  14. It is. I use it on a daily basis with a few large Symfony2 based applications. It's a great tool. http://thorpesystems.com/blog/debugging-php-in-vim I'm pretty interested in taking a look at http://phpdbg.com one of these days too as it ships with PHP5.6.
  15. The second question in particular assumes you are talking about client side (executed in the browser) javascript. Server side javascript is becoming more and more popular these days and is capable of making use of many different database systems.
  16. vim for Windows? Yuk.
  17. We do not delete accounts. If you don't want it, don't use it, simple.
  18. 2 & 3 will never happen using vim's autocompletion. And 1, well, vim gets its context from a few different locations depending on the keystroke you use to start completion. Generally, I only ever use the context of the current buffer. This meens variables will only be completed if they already exist in the current buffer. Not that I use completion often anyway.
  19. Not at all. That's why I said I rarely use it.
  20. vim's code completion is the best (quickest and most flexible) Ive used, not that I use it often.
  21. trq

    PHP Micro-Frameworks

    Silex (http://silex.sensiolabs.org) is an awesome micro-framework built on the shoulders of Symfony (another great though full stack framework).
  22. This resonates with me more than anything else. http://blog.sanctum.geek.nz/series/unix-as-ide/
  23. 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.
  24. 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
  25. I'm a massive vim fan so don't really have much of an opinion when it comes to IDE's.
×
×
  • 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.