I need to launch an html page with certain dimensions when a function is called in my PHP script. Something like this
function success() {
open("popuptemp.html",["toolbar=no,width=326,height=252,status=no,scrollbars=no,resizable=no,location=no,menubar=no"]);
exit;
}
Any ideas?
Thanks