- PHP, which stands for "PHP: Hypertext Preprocessor" is a open source scripting language that is especially suited for web development and can be embedded into HTML.
- The main goal of the language is to allow web developers to write dynamically generated web pages quickly.
7:06:00 PM
Achappan Mahalingam
No comments
Related Posts:
Quick way of checking used space in percentage for /var directory in linux [root@achappan mysql]# df -hk /var Filesystem &nbs… Read More
Installation steps for Mysql 5.6 on Red Hat Linux 5 1. List down all the installed Mysql RPM's [root@achappan mysql]# rpm -qa | grep MySQL MySQL-server-5.5.*-1.rhel5 MySQL-client-5.5.*-1.rhel5 perl-DBD-MySQL-3.0007-2.el5 [root@achappan mysql]# 2. Remove MySQL-server and M… Read More
How to restrict my application and display "Browser Not supported Error" on old IE web browsers? <?php if(preg_match('/(?i)msie [1-8]/',$_SERVER['HTTP_USER_AGENT'])) { echo "Browser Not supported"; exit; } ?> … Read More
How to create an archive using tar in Linux? You can create a tar archive on two ways like below. To create an archive of a directory and its contents: tar -cvf name.tar /path/to/directory To create an archive of certfain files: tar -cvf name.tar /path/t… Read More
Display a image in html email template In PHP, You can display the image in HTML email template in two ways, 1. Your organization restricted your application directory by authorization and you cant able to access outside. In this case you can embed a images in h… Read More
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment