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 |
Write a program to get lcm of two numbers using php?
Why would we use === instead of ==?
what does this symbol mean in php?
Tell me what are the different types of errors in php?
Where are the session values stored?
How does php strcmp work?
Whether session will work if we disable cookies in client browser ?
What are the benefits of using php and mysql?
What is a controller php?
How can we take a backup of a mysql table and how can we restore it. ?
7 Answers Brain Infosys, Oracle,
What exactly is validating and sanitizing?
How to create an array from php string?