var http = require('http');
var uhtml =
'Post Example ' +
'' +
'Fetching Values from Form/Screen using Node JS
'+
'
'Name :
' +
'Surname :
' +
'' +
'
var uhtml =
'
'' +
'Fetching Values from Form/Screen using Node JS
'+
'
'Name :
' +
'Surname :
' +
'' +
'
'';
http.createServer(function (req, res) {
var body = "";
req.on('data', function (chunk) {
body += chunk;
});
req.on('end', function () {
console.log('Posted Data: ' + body);
res.writeHead(200);
res.end(uhtml);
});
}).listen(1234);
No comments:
Post a Comment