Blogspot - deepakssn.blogspot.com - Tech Meal
General Information:
Latest News:
[PHP] - Connect to Unix / Linux server using SSH from Windows PC 30 Aug 2009 | 10:31 pm
Setting up public key authentication: 1. Login to the unix server you want to connect using putty. 2. mkdir .ssh (there is a dot before ssh) 3. cd .ssh 4. ssh-keygen -t rsa -f mykey 5. Enter pa...
NC10 MAC OS X 10.5.7 - External Wi-Fi Works!!! 12 Jul 2009 | 10:27 am
1. Download MSIWindosx86.iso (Google search) 2. Download 10.5.7 Combo update (http://support.apple.com/downloads/Mac_OS_X_10_5_7_Combo_Update) 3. Buy http://www.meritline.com/wireless-mini-usb-2-pen-d...
Quad Boot / Penta Boot on Samsung NC10 --> Windows XP - Windows 7 / Vista - Mac OS X - Linux 23 Jun 2009 | 03:25 pm
I've tried more than 100 times to get Quad Boot / Penta Boot work, and the following works consistently on Samsung NC 10. I recommend you to take backup of all important data you will need, before you...
[PHP] - [Upload Multiple Images] 2 Aug 2006 | 06:03 pm
[Initial Setup] 1. Create a folder "uploads" on the server 2. Create file.php and upload.php and use the code below [file.php] <form enctype="multipart/form-data" action="upload.php" method="post"> I...
[PHP - MYSQL] - Connect to database function 16 Jun 2006 | 09:44 pm
1. Create a file dbconnect.php with the code below (Paste this code and change the values in blue as you need) <?PHP function exec_query($sql) { $server = "server_name"; $username = "user_name"; $pwd ...
PHP Random String Generator function 14 Jun 2006 | 06:09 am
function random_gen($length) { $random= ""; srand((double)microtime()*1000000); $char_list = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; $char_list .= "abcdefghijklmnopqrstuvwxyz"; $char_list .= "12345678...
[GMAIL] - [PHP] - Send email using PHP with Gmail 11 Jun 2006 | 06:04 am
[ This explains how to use gmail to send emails in php using PHPMailer] 1 Download PHPMailer from http://phpmailer.sourceforge.net 2 Extract to folder phpmailer 3 Create a file email.php 4 Pas...
Configuring Apache - PHP - MySQL on Windows (WAMP Configuration) 6 Jun 2006 | 08:50 pm
[Download and Install] 1 Download Apache, PHP, MySQL 2 Install Apache to its default location and make sure IIS is stopped during installation. 3 Extract PHP to C:\PHP folder 4 Install MySQL ...