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 increase the execution time of a PHP script?
How can we submit from without a submit button?
What is a controller in programming?
What exactly is PHP?
What is the difference between == and === operator in PHP?
What is php artisan tinker?
Why do we need session?
i want to store retrieved data from database into an array list with limit.And display the data from that array list.have any answer for this?
What is difference between array_merge and array_combine in php?
What is str_replace()?
What is the interface in php?
What is whitespace in php?