Posts by Daniel Galvão • 60 points
4 posts
-
0
votes1
answer23
viewsA: Because the form only worked once
It is possible that you have given error in mysql, because depending on how you created the table, the primary key was repeated. Try looking at the php log to see which error has occurred.
-
-3
votes2
answers1008
viewsA: How to send javascript data to mysql
It is not possible unless you are using nodejs on the server with the mysql node module. Otherwise you will need a PHP webservice or any other server language. So you send the data to this…
-
0
votes3
answers249
viewsA: Disable button in modal window using Jquery
$(".#btn-send-reminder") Remove the dot before # because it is either a class or an id. btn-send-reminder = id .btn-send-reminder = class Check ahead because the jquery event is classed and the…
-
5
votes4
answers2392
viewsA: NPM, Bower and Composer, which one to use?
npm is the nodejs package manager. Used in javascript projects and takes care of the javascript module dependencies of your project. See more on npmjs commiserate is the backend package manager,…