Jump to content

Calling PHP from HTML


Hodo

Recommended Posts

php is processed and finished when the users sees the full page so no html cannot call a php file.  I suspect your are trying to make a php template in which case include and require are your friends - you'll find them explained in the manual.

Link to comment
https://forums.phpfreaks.com/topic/55172-calling-php-from-html/#findComment-272732
Share on other sites

depending on what you want done,

you could write the php function on a seperate page,

lets say, "function.php",

and then in your HTML file write:

<?php include "/function.php"; ?>

 

once again...this assumes that the server is set up to parse html files for php...

 

it is just easier to save the file as php...

Link to comment
https://forums.phpfreaks.com/topic/55172-calling-php-from-html/#findComment-285725
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.