answersLogoWhite

0

How do you put HTML in PHP?

User Avatar

Anonymous

14y ago
Updated: 8/18/2019

Its done exactly the same as when you put it in an HTML file. There are 2 ways you can do it:

<html>

<?php

// php stuff

?>

</html>

Or you can do it like this:

<?php

echo "<html>";

// php stuff

echo "</html>";

?>

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

I have a HTML website I want to use a php script I have but the main php file has the info in it and I want it to be on the HTML site how can I embed or use the php code without using frames?

change the extention of the .HTML file to .php and then open the file that was previously HTML and put &lt;?php include ("path/to/second/php/file.php"); ?&gt; so for example if i have page1.HTML and page2.php i rename page1.HTML to page1.php and then put &lt;?php include ("page2.php"); ?&gt; where i want page2 to appear. Note: Any HTML file can be renamed to have a .php extention even if it doesnt contain any PHP.


Where does one put PHP encoding type headers?

One will put PHP encoding type headers before instructions using HTML language. This is done in order to start the HTML sequence through the PHP header.


How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.


How do you go from HTML form to php?

Build your form in HTML and specify your PHP file in the action of the document. HTML does the form stuff, PHP the processing (although you can - of course - use HTML inside PHP via print() or echo(), too)


PHP program that adds the words vertically?

After each word put the HTML tag this will put it on a new line.


How do you Put jspcode into PHP?

It is not possible to directly put jsp code in php, You could look into json and xml which allow data transfer between different technologies. Alternatively you could send data from jsp code to html and via html to php. Look at the link below. It may help somewhat


How does PHP differ from HTML in terms of application and structure?

In structure &lt;?php ?&gt; &lt;html&gt; &lt;/html&gt; in application - one is static and another is dynamic. this much ......


What does PHP include in terms of html coding?

To do programming in PHP, there is often the dilemma of whether or not to place the code within the HTML. Depending on the writer's coding experience it is usually better to place the PHP within the HTML.


Does netscape support php?

PHP support is not up to the clients (browsers). If it runs on the server, then HTML is served to the client. PHP may have generated the HTML, but that does not matter to the client.


Can a php file be valid without any php code?

PHP files are HTML files with any amount of PHP intermingled into it, so the file can be empty or only contain HTML and be valid, yes.


What is the naming extension for a webpage?

with just plain HTML its .HTML, but if you want to use a server side language like php it will be .php


What are the various ways to embedded PHP in HTML coding?

there are in fact two basic methods - one is called minimal PHP, and the second tends to be referred to as the CGI-way. minimal php means that you're making php secions in HTML only where really necessary (using the php section begin (&lt;?php ) and end (?&gt; ) tags.). the CGI-way, or maximum PHP means, that you're in fact embedding HTML into strings in php, and the whole page is echo()ed. the second way tends to be viewed as an abuse of php by some people, as php was meant to be "templating" language, and designed to be used mainly the first way.