baig772 19 Web Application Architect

But we still need to look into your code. May be there are some server settings isseu or some thing else

baig772 19 Web Application Architect

if the user can enter the article, bydefault set its article status as 0 and then let the admin to view all the articles from where he csn change the status and where you have to show the articles, you can select the articles like
select * from article where status = 1

baig772 19 Web Application Architect

manually run your query in mysql and then see what result it displays, and share it

baig772 19 Web Application Architect

its obvious you cannot, because you are echoing $branch in name tag :)

baig772 19 Web Application Architect

i commented

response.close()

because i was following an old tutorial.
please change this to

response.end()
pritaeas commented: Thanks for sharing. +14
baig772 19 Web Application Architect

it worked,
i changed my code to this

var sys = require("util"),
    http = require("http");

http.createServer(function(request, response) {
    response.writeHead(200, {"Content-Type": "text/html"});
    response.write("Hello World!");
    //response.close();
}).listen(8090);

sys.puts("Server running at http://localhost:8090/");
baig772 19 Web Application Architect

try

<img src="img.jpg" onClick="window.open('http://www.daniweb.com')" />

i think it should work fine

SolidSolutions commented: concise and kind. +5
baig772 19 Web Application Architect

http://ckeditor.com/demo
you can try this one but if you have ever worked on some wiki,
wiki uses WYSWIG text editor.

baig772 19 Web Application Architect

and there is no such extra ordinary thing in java which is not present in Php

Tofayel commented: I agree with you +0