Recent content by HanBrouwer

  1. H

    How to activate php

    Ah, and I solved the problem with php-code in html. When I learned all this stuff (yes I'm that old), it was possible to add php inside a html but in modern systems you had to make a php-file ( with the extension php) and write html-code in that file. In that way you can add php-code inside the...
  2. H

    How to activate php

    Thank you very much. I have now a connection with the database. I didn't mention that I had to make an other password for the database as well. I used the password that is only for access to x13.
  3. H

    How to activate php

    Ah, I have found a part of the problem. I added a space between <? and php..............?>. This part is working now. Now I had to solve the connection to the database. I have: $servername = 'localhost'; //or should this be something with x13? $username = 'the username of my database; $password...
  4. H

    How to activate php

    I have now selected mysqli (witch gives a conflict whit nd-mysqli) and changed display-errors to E_ALL but there are no changes. Still no PHP in the browser.
  5. H

    How to activate php

    That HTML wille not process PHP is not true. This should return Hello World!: <!DOCTYPE html> <html> <body> <h1>My first PHP page</h1> <?php echo 'Hello World!'; ?> </body> </html> And I checked the the PHP Access box and it is checked.
  6. H

    How to activate php

    I have opened in the browser an html-file with a small php-script (returns only html and no php text), a php-file with a simple script (nothing returns) and a php-file to open the data base (returns a http error 500). Still no error data in the error file.
  7. H

    How to activate php

    It's an empty file!
  8. H

    How to activate php

    I can't find any error log. I see only a few Mar-2026.tar.gz files that I can't open. <? php echo "It works"; ?> should give an output in the browser when I put it in a php-file, isn't it?
  9. H

    How to activate php

    I don't know where to look. Is it in this file? 74.7.244.62 - - [14/Mar/2026:04:17:51 -0400] "GET /robots.txt HTTP/2" 404 245 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt...
  10. H

    How to activate php

    I started a free site on x10, made a small database, made a little html file and go to it in the browser the html is perfect. I have set php to version 8... but I see that it is 7..... When i add a small php line like <?php echo "Het werkt"; ?> in the body of my html, I can see in the browser...
Top