1,003 Posted Topics
Re: I learned how to write basic php programming when I was 13 ( was in high school). I read most if not all of the php tutorials in w3schools, read more about the functions I have learned from there in php.net. I cannot get enough and wanted to learn more, … | |
Re: ok, say we have a directory called media. Let's put all the media in this directory. For the sake of this example we have flv, mp4 videos inside this directory. I am not sure if we can play mp3 with the same player for video. I have not tested this … | |
Re: ,and here is how you can sort the allowed extensions. This will be based on the codes presented above. [CODE] $username= "Member Name"; $filename = strtolower($_FILES['file']['name']); //lets get the extension of uploaded image $ext = strtolower(substr($filename, strrpos($filename, '.') + 1)); //compare the uploaded extension to allowed extensions $allowed_exts = array('jpg', … ![]() |
The End.