Computer42 Posted June 11, 2017 Report Share Posted June 11, 2017 Hi, I am running Uniform Server ZeroXIII - 13.3.2 portable under Windows 10 64bit. I am unable to get a php script or file to run from within an HTML file. See HTLM file,<html><body><p>First try with php:</p><?phpecho "My first PHP script!";?></body></html> When the file is run I get ‘First try with php’ come up but no "My first PHP script!" and no error message. Various web sites talk about creating a file called .htaccess with the following line,‘AddType application/x-httpd-php .html .htm’ and putting in the website root directory. Can someone advise if this is correct and where the file should be placed as I have tried various placed without any success. RegardsPeter Quote Link to comment Share on other sites More sharing options...
Zerolinks Posted July 5, 2017 Report Share Posted July 5, 2017 It works fine with: .htaccess AddType application/x-httpd-php .html .htm test.html (.html or .htm) <html> <body> <p>First try with php:</p> <?php echo "My first PHP script!"; echo '<h1>'.time().'</h1>'; ?> </body> </html> Quote Link to comment Share on other sites More sharing options...
jessicabarnes Posted August 18, 2017 Report Share Posted August 18, 2017 Hello, When I was learning simple PHP programs, I've faced this kind of similar errors and problems. But nowadays, I am learning Laravel frameworks and starts to develop a basic simple web app. Thanx Quote Link to comment Share on other sites More sharing options...
shivani92 Posted November 7, 2019 Report Share Posted November 7, 2019 Thanks for sharing information Quote Link to comment Share on other sites More sharing options...
sudeepjd Posted November 11, 2019 Report Share Posted November 11, 2019 The standard way would be to use a .php extension for a file containing PHP code. That way if another developer takes up your work, the standards would help that new programmer easily take over. Yes adding in the handler to the .html file in .htaccess would work, but would not be a standard way of doing things. Quote Sudeep D'SouzaDeveloper at UniformServerThe Uniform Server | My Paper Napkin Collection Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.