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 |
What is binary safe function in php?
What are the special characters you need to escape in single-quoted stings?
how many types of inheritance is there in php? name there?
How can you upload a file using php?
What is php and how do you use it?
What are the main error types in php and how do they differ?
Can php run without server?
Write a program using while loop in php?
Which is the best php framework for a beginner?
What should be the length of variable for SHA256?
Explain me what is the difference between explode() and split() functions?
How can we know that a session is started or not?