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 does header() work . What do they tell the server same question for SESSIONS
How to register a variable in PHP session?
How are Variables Defined in PHP?
Where are php configuration settings stored?
How to get the DNS servers of a domain name?
What are the features of php 7?
What is the functionality of the functions strstr() and stristr()?
What does the unset() function means?
How to create a session? How to remove data from a session?
what server connected
How will you sened requests from server1 to server2 from server2 to server3 and so on .. w/o letting the output come to the browser or say the client end in php
How do I run a php program in dreamweaver?