Enhanced Ping for Windows
FPing:
Ping multiple hosts with one simple command.
Ping with random data, or data you provide
Time between pings can be adjusted as needed from 1ms to 5s.
Read a hostlist from a file
Output redirection to a file for par... [Read-More ...]
Linux - Disabling PHP Safe Mode for a specific folder
using .htaccess file:
create the .htaccess file
the content of the .htaccess file should be:
php_value safe_mode “1″
using php.ini file
upload to specific folder the php.ini file
in php.ini enter this... [Read-More ...]
XAMPP for Windows - Apache, PHP, Mysql Server on Windows
XAMPP for Windows, Free Software:
Apache HTTPD + Openss
PHP Server
MySQL Server
phpMyAdmin Script
Mercury Mail Transport Syste
FileZilla FTP Serve
XAMPP CLI Bundle
Download links -> XAMPP for Window... [Read-More ...]
Virtual PC Software - VMware, VirtualBox, Virtuozzo, Xen, QEMU
Parallels provides virtualization of x86 for running unmodified PC operating systems. It also uses a lightweight hypervisor technology in order to improve security and to increase the efficiency. Parallels has become popular for its ability to run Win... [Read-More ...]
Remove HTML tags from POST and GET - PHP
How to remove/Strip HTML tags from php $_POST variable:
foreach ($_POST as $key => $value) {
$_POST[$key] = addslashes(strip_tags($value));
}
foreach ($_GET as $key => $value) {
$_GET[$key] = addslashes(strip_tags($... [Read-More ...]






















