+ 3
Can i write "php" codes in html too?
6 Answers
+ 4
You can't write PHP code in HTML.
You can write HTML code in PHP.
+ 3
Inserting your PHP codes in html would work just fine
+ 2
If you're asking if you can embed your PHP code in your HTML files, yes. If you're asking if HTML can do the same things that PHP can do, no.
+ 1
then how can i save it?
+ 1
<?php
// your PHP code here
?>
<html>
<head></head>
<body>
this is my HTML body. <?php // more php code ?>
</body>
</html>
0
if save php code with .html extention, it wont run.