####################################################
function to get the extenstion of a file
####################################################
function getFilenameExtension($fname){
$extension = explode('.', $fname);
//returning the extension of the files
return $extension[sizeof($extension)-1];
}
?>
#####################################################
Example
#####################################################
echo getFilenameExtension("filedbconection.inc.php");
?>
######################################################
Answer :php
######################################################
[Wednesday, November 21, 2007
|
0
comments
]
Popular Posts
- Jquery based dynamic adding and removal of html elements.
- functiion for MD5 encrypting and decrypting
- MySql Questions
- creating dynamic elements in HTML using Javascript.
- php question
- Questoin regarding classes
- File upload progress meter in php
- function to find out time finished in words
- Some htaccess tips
- Contact Me
0 comments
Post a Comment
Please put your comments here. your questions, your suggestions, also what went wrong with me.