var fDesc=new Array(); fDesc[0] = "ZZEE PHP GUI is an easy-to-install PHP application solution for Windows. It sets up in seconds and works out-of-the-box.Before ZZEE PHP GUI you were not able to run PHP files directly in GUI mode. If you wanted, for example, to develop a PHP script with a form for selecting some options, that manipulates files on your computer, this would become a non-trivial task. You would need a webserver set up and running on your computer, then install and configure PHP support for it, then place a script to the webserver's directory, then open a browser, and then type a URL like "http://localhost/script.php". This would create various problems, including security issues and additional system load for a permanent server process, let alone awkwardness of the whole thing. On the other hand, if you click a PHP script in the Windows Explorer, it will run in the command line mode, not GUI as you may have expected."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }