using php with html

I writing this post with the view of that you familiar with “what is HTML Page and basic PHP?”. For run PHP codes inside PHP also require a server on your local machine which is a publish in our blog. So we know that HTML is a base of web development where developer can present content in fashionable way for website. Well form formatted of HTML pages give benefits to spread world-wide which will we cover later. HTML pages have basic structure to present contents. There are some different area in HTML which use for different purpose. Now given below is basic structure of HTML page.
<html>
<head>
<title>This is the title shown above the menu bar on my browser</title>
</head>
 
<body>
I wish I knew how to write PHP in HTML files...
</body>
 
</html>
Now we come to our main aim is use of php. We can combine HTML and PHP in same page of website. In above section we learn basic structure of HTML Page. Look “How merge PHP codes in HTML?”
<html>
<head>
<title>This is the title shown above the menu bar on my browser</title>
</head>
 
<body>
<?php
  print "I know how to write PHP!";
?>
 
<b>Perhaps I'll be lazy and write more php.</b>
 
<?php print "No way!  PHP is cool!<br />"; ?>
</body>
 
</html>
Now we saw “How combine to language contents?”. <?php show the start of php working area and ?> show end of php codes. So we can easly start php area any where in html page according to requirement. You can put your codes inside of  <?php your statement goes here…… ?> . if you type your code out side of <?php ?>  it not working and html page is taking it as simple contents. Because to work with php need to define its working area. So then php language trace and under of what command type and there contents.
Share:

How to install wordpress plugin using WordPress Admin Panel Search Option

This way of Wordpress Plugin Installation Very Easy. The downside of this option is that a plugin must be in WordPress plugin directory. Free plugins that follow GPL and all WordPress guidelines are Under this directory.
Ads by AdGenta.com
For this you go to Worpress Admin Panel  and Click on Plugin > Add New
install wordpress plugin, installing wordpress plugins, how to install wordpress plugin, wordpress install plugin, install wordpress plugins, install plugin wordpress, wordpress search plugin

When you Install Wordpress Plugin will see the screen like the one in above screenshot. Now type Wordpress Plugin Name or Function, like we did. Then you will see a listing like the below.
install wordpress plugin, installing wordpress plugins, how to install wordpress plugin, wordpress install plugin, install wordpress plugins, install plugin wordpress, wordpress search plugin

Pick the Wordpress Plugin that is suite for your requirement. In our case we were searching for image Gallery Wordpress Plugin, then click the Install link. A popup the plugin information like the example below.
install wordpress plugin, installing wordpress plugins, how to install wordpress plugin, wordpress install plugin, install wordpress plugins, install plugin wordpress, wordpress search plugin

Now we see description, installation method, and related information about the Wordpress Plugin. If this is the Wordpress Plugin that you need, then click on the  Install Now button. When you click that button, the Wordpress Plugin will be installed, and you will screenshot like below.
Ads by AdGenta.com
install wordpress plugin, installing wordpress plugins, how to install wordpress plugin, wordpress install plugin, install wordpress plugins, install plugin wordpress, wordpress search plugin

After you click on Activate the Wordpress Plugin, you have installed the WordPress Plugin. You would have to configure the settings to fit your needs. These settings will vary for Wordpress Plugin therefore we will not guide about this in this post.
Tags: , , , , , ,
Share: