I’m developping an app (javascript and php). I use the include command at the top of my index, so it has becone [www.mypage.php] .
now I’m wondering if that in compatible with HTML5 ?
EDIT
ok i have not use HTML5 yet but just wondering coz i will in future.
my index:
<?php
include_once("../config.php");
?>
<html>
<head>
.
.
.
so its url should be http://www.mypage.php instead of http://www.mypage.html
Would that make any conflict when using HTML5 ?
How could a PHP include() be compatible or not compatible with HTM5?
Since PHP runs server-side, and then sends some content back to the browser, the browser never knows how that content was generated.
Your question is not relevant.