Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. Why don't you tell us what the error message is instead of having us play guess?
  2. Having database columns such as col_1, col_2, col_3 etc etc wreaks of poor design. I would start there. Google some tutorials on "Database Normalisation" because as it stands your database design is terrible and your code won't make it any better.
  3. That will get you banned. I suggest you contact your host and ask them if you have shell access.
  4. The script is encoded, you will need to contact the vendor.
  5. This topic has been moved to Application Design. http://www.phpfreaks.com/forums/index.php?topic=350418.0
  6. This topic has been moved to Ajax Help. http://www.phpfreaks.com/forums/index.php?topic=350408.0
  7. Shell access button? You generally access the shell via an ssh client. You may however have some web based shell emulator that will suffice (this sounds like what your looking at). Login via that and execute the appropriate commands.
  8. You need shell access to be able to do this. Either that, or create the database locally, then make a dump of that. You should have some method of importing a database from a dump available through your control panel.
  9. There are lots of different ways of doing it and lots of tutorials on the subject. Why dont you google for some Ajax tutorials or have a look at jQuery's Ajax documentation and come back when you have a more specific issue?
  10. You shouldn't mix your code into your markup. There are frameworks around these days that support unobtrusive JavaScript allowing you to attach events to elements by selecting those elements using CSS selectors. jQuery is probably the most popular of these frameworks, check it out.
  11. You could aslo use it divide applications up. For example, you could install a wordpress blog into ~/your-server-root/blog then access it via http://blog.yourdomain.com
  12. Spaces are not valid within a url. Get rid of them.
  13. This topic has been moved to Editor Help (Dreamweaver, Zend, etc). http://www.phpfreaks.com/forums/index.php?topic=350328.0
  14. I use vim which does a good job of helping with indentation. IDE's generally get in my way.
  15. When Web 3.0 becomes official? The web doesn't have versions. The idea is ridiculous.
  16. You'll need to be allot more specific. Where exactly are you stuck?
  17. I generally use the Zend Coding Standard, though at work we use a slight variation of it. As long as you keep your code consistant you'll usually be pretty right.
  18. You might want to have a read of this: http://www.phpfreaks.com/forums/index.php?topic=323280.0
  19. There likely isn't one. You would use Google api to retrieve data, then JavaScript to create the auto suggest. A big part of programming is learning to put different pieces together. Searching for specific tutorials will be a very long and slow process.
  20. I don't know what else I can do. “ and " are not the same and the first one is NOT valid in php.
  21. Again, look at the last quote. Ip address: " . $_SERVER['REMOTE_ADDR'] . “ should be: Ip address: " . $_SERVER['REMOTE_ADDR'] . "
  22. The error is quite self explanatory. You need to post some relevant code.
×
×
  • 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.