which function used to get the file name in php?
Answers were Sorted based on User's Feedback
Answer / simran
The file name on the browser system
$file_name=$_FILES[$fieldName]['name'];
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / lakshmi
<?php
$path = "/home/httpd/html/index.php";
$file = basename($path);
$file = basename($path, ".php");
?>
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / naga
$parts = Explode('/', $_SERVER["SCRIPT_NAME"]);
$currentFile = $parts[count($parts) - 1];
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / nilsoft
Method 1.
$file = trim($_SERVER["SCRIPT_NAME"],'/');
Method 2.
$file =
substr($_SERVER["SCRIPT_NAME"],1,strlen($_SERVER["SCRIPT_NAME"])-1);
Method 3.
$file = str_replace('/','',$_SERVER["SCRIPT_NAME"]);
Method 4.
$file = basename($_SERVER["SCRIPT_NAME"]);
| Is This Answer Correct ? | 0 Yes | 0 No |
What is die in php?
What is properties of class?
Who is the father of php?
What is a base url?
Write a program to get second highest number in an array using php?
Explain the difference between require() and require_once()?
What are major variables in research?
write a program to generate bill screen 1.1st page should get the number of products to be billed. 2.2nd page should display the number of rows according to the number of products given in the first page. 3.Each row should have a text box for a.product name b.quantity c.unit price d.item price = quantity x unit price This should be automatically calculated not to be entered by the user. 4.After entering the products calculate sales-tax for the total amount which 8.25%. 5.After entering these values you have to generate the bill in the next page with a unique number for the bill. can anyone solve this problem..i am in need to solve this problem..pls help me
What does trim () do in javascript?
What is the correct and the most two common way to start and finish a php block of code?
What is full form of PHP?
How can we get the error when there is a problem to upload a file?