how to include external php file in to html page?
Answers were Sorted based on User's Feedback
Answer / kesavan
you can include by using <iframe> like below this
<iframe src="external.php"></iframe>
you can get the output of the external.php in this iframe.
| Is This Answer Correct ? | 38 Yes | 16 No |
Answer / pravi
Only .php extension files can be added by the following
syntax.
include("filename.php");
require("filename.php");
include_once("filename.php");
require_once("filename.php");
The only difference between the include and require is the
error handling.
Include - just gives warning errors
Require - gives fatal errors
| Is This Answer Correct ? | 25 Yes | 10 No |
Answer / edin
Hi Sott,
only possible way is to include your PHP file above or
belowe HTML tags like
<?php include("filename.php");?>
<?php require("filename.php");?>
<?php include_once("filename.php");?>
<?php require_once("filename.php");?>
Or with inline frame
<iframe src="external.php"></iframe>
Exanple frin Sudheer is also OK, but if you want to execute
some PHP code.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / scott
I tried both of the above methods on my application and
both had the same result. The browser wnated to download
and save the file instead of displaying it on the html
page. Any other ideas?
| Is This Answer Correct ? | 5 Yes | 6 No |
Answer / sudheer
<form name="frm" method="POST" action="sample.php">
....
....
....
Here submit button
</form>
When click submit sample.php will execute
| Is This Answer Correct ? | 8 Yes | 11 No |
Answer / cd
not possible if the file is something.html or something.htm
only possible if the entire html code is written in .php
extension file
| Is This Answer Correct ? | 14 Yes | 23 No |
What is $this in php?
Hi all, I have a problem in Apache on windows xp.I tried to unistall apache and install it again. But when in did the installation again, and tried to run apache, i get the following error message, Socketaddresse can just be used once. Make_sock: could not build to address 0.0.0.0.80 No listening sockets available.Shutting down Unable to open logs. and i also get (error) OS2. The system cannot fine the installed service named "Apache2". Please i need some one to help me out with this.I'm really fustrated cuz i need this stuff working as fast as possible. PLEASE HELP ME
What is php session id?
What is the function in PHP do not return a timestamp?
What is the use of explode() function?
how much can a 1yr experienced php programmer earn in india?
9 Answers TCS, Tops Technologies,
Is it possible multiple inheritance in php?
What is the exact Diff. between include_once() and require_once() in PHP?
Differences between get and post methods?
What are magic methods?
What is happening in the following code $objA = new A(); // A is a class $objB = $objA;
What is namespace in php?