Jump to content

thescientist

Moderator
  • Posts

    8,682
  • Joined

  • Last visited

Everything posted by thescientist

  1. WebStorm (my preference), Sublime Text 2, or Atom are popular options.
  2. Fair enough, so either they will or they won't at this point I suppose. You're post is very educational, so hopefully at least some of the forum members here will be able to make use of it.
  3. To be fair, your post is 4 days old and in the PHP forum. I think the point Ingolme was trying to make is that for those posts made in the Suggestions forum (which is specially for making suggestions for the W3Schools.com site) the site maintainers tend to implement them, albeit while not actually making a post or comment to that affect.
  4. I'm pumped. I've been following it for a little while, and have also been reviewing and slowly adding TypeScript to some of my projects, so the sooner the better!
  5. I am having a hard time following along. I don't see any buttons. Do you mean the a tags (links)? And how exactly do you want five of those to become one? What exactly does that mean? Do you mean one link with just the rating inside it instead?
  6. You have to make your own database, using the example at the beginning of the page as a reference.
  7. have you compared relative to those other projects? What's the overall load time for an article with your software vs that other software?
  8. you have not listed with specific any of the tools you are using, so there's no meaningful way to help you
  9. what's your question? The error is pretty clear, you are missing an opening { inside the databases array
  10. where did you get that from? from a site? it's not a native PHP function so you can't use a function that's not native without actually defining it.
  11. did you mean to connect to the mysql server first before trying to run those commands at the prompt? what happens when you try and run them in PHPMyAdmin or similar tool?
  12. you still need to tell us the error though
  13. If you are trying to paginate data, then yes something like AJAX would be needed after the initial load if you wanted to load new data without refreshing / reloading the current page.
  14. I'm not really sure what you're asking for. What tracks? How do they display now? What libraries are you using? Do you have a live example somewhere? What you're presenting seems like a layout question, but you've only provided div tag and script include. It's hard to understand the issue without any context.
  15. what's wrong? are you checking for errors in the console? It looks like you have that function scoped inside and an immediately-invoked executing function (IIEF) and so that function wont be available to your onload function, which appears to be outside that block.
  16. are you saying you have a book that uses the mysqli extension and you still decided to use mysql instead? I would highly discourage that, mysql is deprecated, at minimum you should be using mysqli, or even better, PDO.
  17. are you checking for Javascript errors in the console?
  18. I see that you have marked the issue as solved, but assuming you did not remove any content from your post in your edit, you should provide actual details about the issue, as "does not work" with no frame of reference (no expected vs actual, no screens of what is considered working to you / your project, and no code) gives us literally nothing to work with.
  19. Are you sure you are testing on a support device? http://stackoverflow.com/questions/9304503/how-to-detect-if-browser-supports-file-uploading-mobile-desktop also, this is not a PHP question, so moving to the HTML forums
  20. You've left out the most important part. Where's the code for execute_post?
  21. I think for mobile users you might want to reduce the calendar down to a single day view, and give the user options to scroll left / right by day, with an optional month picker / dropdown for easily moving to other months.
  22. @stathis My guess is this code was exploiting a bug in IE8 where name and ID attributes with the same value were interchangeable? You are looking for an element with id newPlayerName var nnHidden = document.getElementById('newPlayerName'); but all you have is an element with that value for the name attribute. <INPUT type=hidden name="newPlayerName"> Try adding an id to that element with the same value <INPUT type=hidden name="newPlayerName" id="newPlayerName">
  23. did this thread just get hijacked from the original OP? @IkeWolf Please don't post your own questions in someone else's thread.
  24. You should use your browsers console to look for errors, that would be the first step in debugging any Javascript code.
  25. Or send the user a confirmation email with a confirmation link validating they are the owner of said email address.
×
×
  • Create New...