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 can we display the output directly to the browser?
How to set session.gc_divisor properly?
What is an associative array?
Which array function checks if the particular key exists in the array?
How to find a specific value in an array?
what is mean by portal
What is the difference between explode and split?
How can we increase the execution time of a PHP script?
12 Answers CyberBeoz, Photon, XTX,
If we login more than one browser windows at the same time with same user and after that we close one window, then is the session is exist to other windows or not? And if yes then why? If no then why?
Is multiple inheritance supported in php?
How to communicate with sockets in php?
Who is the father of PHP and explain the changes in PHP versions?
13 Answers Befree, iMark Group, Netizen,