html5andphp

Tuesday 4 April 2017

full-form-related-to-companies-and-corporations

Full Form related to Companies and Corporation

Here you can learn full form, stands for, meaning, what is, description, acronym for, abbreviation, definitions, full name.
 
Company Name:
Full form

ABC                                  American Broadcasting Company
AMD Advanced Micro Devices
AOL America Online
APC American Power Conversion
AT&T American Telephone and Telegraph Company
BenQ Bringing Enjoyment N Quality
BHW Bell & Howell Company
BMW Bayerische Motoren Werke
HCL Hindustan computer limited

For more full form and multiple choice question visit mcq.ptutorial.com
mcq 

Saturday 22 November 2014

Special loop keyword



How to use special loop keyword :- continue and break



There are two special keyword available for looping

1. Continue 

2. Break


Continue :- Continue keyword is used to continue the block of code while condition is false following example explain the concept of continue and break keyword.




<?php
for ($i = 1; $i < 10; $i++)
{
if ($i == 5)
{
echo("Loop continued at $i<BR>");
continue;
}
if ($i == 8)
{
echo("Loop terminated at $i<BR>");
break;
}
echo("Number $i<BR>");
}
?>



Break:- Break keyword is used for unconditional jump, above example explain the concept of break keyword.



If you want to learn more about php visit php tutorial and download php basic tutorial 

Thursday 13 November 2014

how to embed php into html




How to embed PHP into html

<html>
<head>
<title>html embeded code</title>
</head>
<?php
echo "welcome to the php";
echo "<br />";
echo "Html and php script embed<hr>";
echo "<b>"."hello friends"."<b>";
?>
<body>
</body>
</html>

Explanation

You can put your PHP script anywhere in our html code. Above example explain the following concept.

Another example of php into the html

<html>

<head>

<title>


<?php

echo "Title of your page";

 ?>

</title>

</head>

<body>

<?php

echo "welcome to the php";

echo "<br />";

echo "Html and php script embed<hr>";

echo "<b>"."hello friends"."<b>";

?>



</body>

<?php

echo "web come to php" ?>
</html>

explaination

Note :You can put php script any number of times in your html page like that.

If you want to learn more about visit

php tutorial

Download PHP PDF php basic tutorial