+ 1

How can i link my php file with html file pls?

23rd Jun 2017, 3:15 PM
Ayodele Paul Timilehin
Ayodele Paul Timilehin - avatar
5 odpowiedzi
+ 5
<?php include 'file.php';? >
23rd Jun 2017, 3:39 PM
Hetbo.net
Hetbo.net - avatar
+ 4
<?php include 'yourfile.php';? > But don't forget to save your html file as '.php' extension!
23rd Jun 2017, 4:31 PM
Edson
Edson - avatar
+ 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>
23rd Jun 2017, 5:24 PM
Sandeep Chatterjee
+ 1
<?php include 'file.php'; ?> ^Hetbo's answer. I just fixed the typo in case you decided to copy/paste it.
23rd Jun 2017, 3:58 PM
AgentSmith
0
thanks guys
15th Aug 2017, 3:08 PM
Ayodele Paul Timilehin
Ayodele Paul Timilehin - avatar