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 count how many sundays in month?
What is the difference between nowdoc and heredoc?
Write a program to upload a file in php?
What is isset function in php?
Is php harder than javascript?
what are the basic steps to installation php4+mysql4+phpmyadmin on IIS web server?. Pls write the complete steps.
If there are 10 text boxes in a form having same name, their value are different. Value of which textbox will be received on action script?
20 Answers A1 Technology, Bajaj, DG, Genpact,
Are php sessions cookies?
Tell me what is the use of the function htmlentities?
What is the use of die in php?
Do you know how to enable error reporting in php?
What is php constructor?