Skip to content

Instantly share code, notes, and snippets.

View Ging123's full-sized avatar
😏

Glauber Ging123

😏
  • Brazil
View GitHub Profile
@kanakiyajay
kanakiyajay / app.js
Created February 25, 2014 16:39
Ajax forms using express.js and jQuery utilizing mysql and node-js
var mysql = require("mysql"),
express = require("express"),
app = express();
var connection = mysql.createConnection({
host : "localhost",
user : "root",
password : "",
database : "node"
});