+ 13
HTML in a PHP code?
I know you can put HTML in a PHP code. My questions are: 1. why can you put HTML in a PHP code? 2. can you put HTML in any other coding language?
7 Respuestas
+ 17
This method is especially useful if you have a lot of HTML code but want to also include PHP. As you can see, you can use any HTML you want without doing anything special or extra in your PHP file, as long as it's outside and separate from the PHP tags.
+ 5
I think You can't put html in php
You can put PHP in html
+ 4
No only php.
+ 4
I'd say that depends.
When using CGI, you can for example also use python to output html, simply by print-statements
#!/usr/bin/python
print "Content-type:text/html\r\n\r\n"
print '<html>'
print '<head>'
print '<title>Hello World</title>'
print '</head>'
print '<body>'
print '<h2>Hello World! </h2>'
print '</body>'
print '</html>'
Here's a link in case you're interested in that topic:
https://www.tutorialspoint.com/python/python_cgi_programming.htm
+ 4
Php was designed that way.
+ 4
React code includes JSX that also looks like HTML.
+ 1
you can use html with php css javascript