I want to open the php page in explorer with no menubar and toolbar. What can I do this?
If you can help me, I will be very happy.
Sincerely.
Ahmet Kara
ahmet_k_2002@yahoo.com
Moderator: General Moderators
Code: Select all
<SCRIPT LANGUAGE="JavaScript">
function launch() {
win0=window.open("test.html","","width='400',height='400',menubar=no location=no,toolbar=no,status=no,scrollbars=yes,resizable=yes");
}
// write link
document.write('<A HREF="javascript:launch()">open window</A>')
</SCRIPT>No, javascript is the way to go to have a window open with no menubar and toolbar.Where must I put the javascript codes in php codes for this? Or is there a different way to make a page with no menubar and toolbar?
Code: Select all
...
<body onLoad="windowopen();">