var fDesc=new Array();
fDesc[1] = ", pendrives, etc., and eliminate them if they are found suspicious. When you make a double click to access to an infected drive, the 'autorun.inf' file executes the malware and your system gets infected. This utility helps you to eliminate those files.";
fDesc[2] = "server, a MySQL database, PHPMyAdmin as well as easy development tools for web sites and applications. We are not really running EasyPHP as such: we are really a starting up Apache and MySQL.";
fDesc[3] = "functions, statements and variables for each of the previous scripting languages but with a deeper focus on PHP. It also has a MYSQL and an FTP client integrated.";
fDesc[4] = "have knowledge of programming. When we open this new version we can find a new interface with more functions, two toolbars, two panels with new features and one window.";
fDesc[5] = "Application developers. It stands out in the crowd of other IDEs and PHP editors as it has the most powerful and useful plugins and developers tools which are always helpful in developing present day web applications rapidly and effectively.";
fDesc[6] = "tools, powerful debugger and profiler, code beautifier, help integration, real time syntax checker, advanced keyboard templates and much more.";
fDesc[7] = "programmer, then you will find out that PHPMaker can help you a lot. PHPMaker is a script generator that will let you manipulate data bases easily. In other words, you will be able to generate quick control panels (written in PHP) for a MySQL database.";
fDesc[8] = "most complete IDEs of the market: with ZendStudio you can improve your skills and enhance your productivity in every stages of your PHP project.";
fDesc[9] = "scripts for the selected tables, views and queries for the further working with these objects through the web. Data management: adding, editing and deleting records.";
fDesc[10] = "interface and an impressive array of feature-rich tools, WebExpert gives you a perfect mastery of web design. With WebExpert, you have full control over all web standards like HTML, JavaScript, CSS style sheets, ASP and PHP.";
fDesc[11] = "auto-complete and color coding features. The program offers advanced debugging functionality and has built-in SQL manager, FTP client and integrated web browser.";
fDesc[12] = "providing connectivity to Subversion. This is the core of the Eclipse platform. It includes the user interface framework and widgetry (called SWT - Standard Widget Toolkit), the skeleton of the Eclipse application .";
fDesc[13] = "the PHP interpreter and the PHP documentation, PHP Coder gives you a time-saving Development Interface. And it is quite small compared to other language's IDEs and loads pretty fast. And the best, it's FREE.";
fDesc[14] = "starting from editors, syntax checker and highlighter, Web server, FTP client, code debugger, Internal code preview and much more. The software supports many languages and has unicode support.";
fDesc[15] = "byte-code compilation. It enables you to force a licensing system. You can also restrict your encoded script to certain IP or MAC addresses.";
fDesc[16] = "PHP portions or files in a very easy way. Using this application, you will be able to convert from as small as one line to as thousands of lines of code in a very fast way.";
fDesc[17] = ", that will let you preview the scripts running during the programming process. This is the most advanced editor for text files, Javascripts, XML documents, SQL, HTML, CSS, PHP, Perl, Python, Ruby TCL and Coldfusion. This is a great application that has the syntax highlighting facility.";
fDesc[18] = "language experiences. It supports file uploads, email auto responses, form validation and displaying success page to the visitor upon completion of the web form.";
fDesc[19] = "understand. The resultant code is slightly bigger in size than the original code and there is almost no execution speed differences as well and the encoded project doesn't need any extensions or run-times.";
fDesc[20] = "searching, creating, editing, deleting records and more. It has support for building multi-lingual scripts and the possibility of filtering and choosing which tables and fields to display. The program doesn't require any coding skills at all.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}