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 write comment in php?
Tell me is it possible to remove the html tags from data?
What is session in php why it is use?
What is the difference between the include() and require() functions?
how to track user logged out or not? when a user is idle?
Tell me when a conditional statement is ended with an endif?
How to invoke a user function?
What is php crud api?
Tell me is it possible to submit a form with a dedicated button?
Is laravel better than codeigniter?
What are the uses of explode() function?
What is difference between post and put in rest?