Page 1 of 1
What version of the HTML 5 file is the php extension versio
Posted: Thu May 13, 2021 8:51 am
by ponton.z
What version of the HTML 5 file is the php extension version of the program and where can you see which version is in the program
Re: What version of the HTML 5 file is the php extension versio
Posted: Thu May 13, 2021 9:46 am
by BaconFries
There is no HTML 5 version file. HTML (Hyper Text Markup Language) 5 is the markup language used best for describing the content and appearance of web pages. Whereas PHP is a server sided programming language which requires the server to run PHP so that it can process the use of forms / photo albums that use PHP. You can select the doctype (HTML 5) and others along with the php version in the Page Properties. You can also set the page extension to .html, .htm, .asp and .php you are only required to set to .php as previously mentioned if the page uses any scripts that use PHP.
Example of how HTML5 will look in the source of the page
Code: Select all
<!doctype html>
<html>
<head>
<title></title>
</head>
<body>
<!-- page content -->
</body>
</html>
Re: What version of the HTML 5 file is the php extension versio
Posted: Thu May 13, 2021 1:20 pm
by ponton.z
But I have a problem with displaying the page and support will pass asking which version of php, so I ask where you can check the version and whether you can change the program
Re: What version of the HTML 5 file is the php extension versio
Posted: Thu May 13, 2021 1:33 pm
by Pablo
Please see this related FAQ:
viewtopic.php?f=10&t=87048
Re: What version of the HTML 5 file is the php extension versio
Posted: Thu May 13, 2021 1:35 pm
by crispy68
Are having issues with the entire page or just certain things on the page? Does anything on your page need to use php? (ex: like a form) If so, you can set which php version to use in the page properties. Also, make sure that your page extension is set to .php and not .html.
If you are not using any objects that require php, then it has to be something else on your page causing the issues. I would then ask you to provide a demo project of the issue and describe in detail what the exact issues are.
Re: What version of the HTML 5 file is the php extension versio
Posted: Thu May 13, 2021 1:35 pm
by BaconFries
and support will pass asking which version of php, so I ask where you can check the version and whether you can change the program
This will explain
viewtopic.php?f=10&t=87048