How to download a php script directly in your script page?
Answer Posted / uma
You can use require function as well and it is a
recommended one..
require("file.php");
reqiure_once("file.php");//will giv a warning msg wen u
include it, the next time by mistake.
Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
How long does a session last in php?
What is php glob?
What is scope of variable in php?
How we can declare variable in php?
How many types of inheritances used in php and how we achieve it.
How to convert numbers to strings in php?
What is meant by PEAR in PHP?
How to replace a substring in a given string in php?
How to download and install php on windows?
Explain how does one prevent the following warning ‘warning: cannot modify header information – headers already sent' and why does it occur in the first place?
Explain how to execute a php script using command line.
Tell us how can we access the data sent through the url with the post method?
What is constructor and destructor?
Why session is required?
Why namespace is used in php?