+ 1
How can i link my php file with html file pls?
5 Answers
+ 5
<?php include 'file.php';? >
+ 4
<?php include 'yourfile.php';? >
But don't forget to save your html file as '.php' extension!
+ 2
yes there are commands like include to import other php file if you are looking for sending html form data to php then.
<form method="get" action="filename.php">
<input type="text" name="text">
<input type="submit">OK</input>
</form>
+ 1
<?php include 'file.php'; ?>
^Hetbo's answer. I just fixed the typo in case you decided to copy/paste it.
0
thanks guys