How to use Putty for SSH and Telnet client

You want to make secure SSH connection to server, sure you need a client. here i am talking about Putty. PuTTY is an SSH and telnet client, developed originally for the Windows platform. PuTTY is open source software that is available with source code and is developed and supported by a group of volunteers. There […]

How to install Composer (Dependency Manager for PHP) in Windows

Installation of Composer on Windows(XP, 7, 8) is easy, its only take few steps. What is Composer? it is a dependency manager tracking local dependencies of your projects and libraries. get it here. It allows you to declare the dependent libraries your project needs and it will install them in your project for you. I assume you have xampp […]

How To Send E-mails From Server – Sample Test

Here is simplest script for sending emails from your server.This is the simplest emailer you can use and have in PHP. If this does not work, then the PHP email configuration is bad! First declare a variable for status message.which will be used to show message for your email send or not. [php] <?php $status=""; […]