Here i introduce my latest forum which was built with Punbb script. The forum is for programmers to discuss their doubts and to get answers from the experts.

Website: http://www.programmers.comn.in    big_smile



Check it and review it.

Don't forget to check the site and write reviews..

Recently i have started a programmers discussion forum to help programmers by experts. It slowly started performing.

Website: http://www.programmers.comn.in yikes


Thank you punbb team.

4

(14 replies, posted in Programming)

But if you use javascript, by disabling javascript they can take images from your website...

5

(14 replies, posted in Programming)

Yeah this is not 100% effective but the average illiterate will be disabled.

<SCRIPT language="JavaScript">

var errormsg="Sorry, right clicking has been disabled...";

function mouseclick(evt) {
if (document.layers) rc = (evt.which==3);
if (document.all) rc = (event.button==2);
if (rc) {
alert(errormsg);
return false;
}
}

if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=mouseclick;

</SCRIPT>