Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to include external php file in to html page?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why post method is used in php?

1159


Why do we show php code in browser?

1122


What are the differences between echo and print?

1034


How is it possible to parse a configuration file?

1016


Tell me when a conditional statement is ended with an endif?

946


What are interfaces in php?

1010


Explain about the $_GET variable of PHP?

1065


How to find the position of the first occurrence of a substring in a string?

1075


What is str_replace()?

1091


Can you explain, when to use if-else if-else over switch statements?

1060


What is the apache?

993


Explain how is it possible to cast types in php?

1029


Which is the latest version of php?

1166


Is null in php?

983


Will a comparison of an integer 12 and a string "13" work in php?

1014