How to download a php script directly in your script page?
Answers were Sorted based on User's Feedback
<?php include("example_script.php"); ?>
Is This Answer Correct ? | 2 Yes | 5 No |
Answer / 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 |
Answer / 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 ? | 0 Yes | 6 No |
how to run PHP in command line?
8 Answers InfoShore, Ramp Green, Xtreeme,
How do I find out the number of parameters passed into function9?
Tell me how comparison of objects is done in php5?
•How to access crystal reports through PHP code?
What is php regular expression?
Is php 5 still supported?
How can I prevent sql-injection in php?
List some array functions in php?
what is nl2br?
What is the difference between htmlentities() and htmlspecialchars()?
How to call javascript function in php on button click?
What is php.ini & .htacess file?