How to Install Memcache in Ubuntu
Friday, 31 January 2014
What is memcache and why you use memcache for your website
How to Install Memcache in Ubuntu
Thursday, 23 January 2014
Difference Between Single And Double Quotes in PHP
It is important to know the difference between using single quotes and double quotes. In this post we will see the difference between them and which should be used when
Single Quotes:
<?php $name = 'srinu chilukuri'; $member = 'This is $name'; echo $member; ?>If echo $member variable it will print the result as it is without interpreted.
output: This is $name
Double Quotes:
<?php $name = 'srinu chilukuri'; $member = "This is $name"; echo $member; ?>output: This is srinu chilukuri
Sunday, 5 January 2014
What is Filezilla and how to use it ?
FileZilla is a popular FTP/SFTP used by most of people. Its interface and functionality is more user friendly. And main thing is its secure.
Now we have to do some setting to connect to web server.
Launch the FTP client software on your local computer.
Subscribe to:
Posts (Atom)