HTML {Hyper Text Markup Language} in Context With WordPress

Today we are going to start our article with What is HTML? then we will discuss What does it do? and What is it used for? So let’s start by first understanding What is HTML? HTML stands for Hyper Text Markup Language. Hyper Text refers to the fact that HTML makes it so that you […]

How enable HTML files to display php code

When writing content for your site, you typically store them in either html or php files. The basic files, particularly on Linux servers like the ones used for our hosting accounts, are either generally either html (files ending in the extension .html or .htm) or php (files ending in the extension .php) files. HTML files […]

How to parse php Code in shtml file

How to parse the php code in .shtml file. Solution : If you want to use php code in .shtml file then you need to add the following handler in .htaccess file. AddType application/x-httpd-php5  .php5 .php4 .php .php3 .php2 .phtml .shtml AddHandler application/x-httpd-php5  .php5 .php4 .php3 .php2 .phtml .shtml Done