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 the difference between characters 34 and x34?
What is the most common http method?
What does == mean in php?
Hi all,, im completely new to PHP, started learning just 2 days before. Can anybody tell me how to run a PHP file to see the program's output? i have created some simple program in Dreamweaver CS3 but don't know how to run it...
What happens when submit button is clicked?
How to insert a line break in php string?
What is nginx and what is it used for?
How can you retrieve data from the mysql database using php?
What are the encryption functions available in PHP?
How do you remove whitespace from the beginning and end of a $string variable?
How do you remove duplicates from an array?
Tell me what is the use of the function htmlentities?