How to upload a file with PHP
If you want to upload files to your website, making a PHP file uploader is easier than you think. Today I’m going to show you a quick example how to build one that you can easily use, and modify for your needs.
If you want to upload files to your website, making a PHP file uploader is easier than you think. Today I’m going to show you a quick example how to build one that you can easily use, and modify for your needs.
Want to know how to make those cool software boxes you see in advertisements online? This is a quick tutorial to show you how they do it.
For something different, here is a try at a Photoshop tutorial. I haven’t done one of these since 2001 or so, but I figure I’d share this little trick for making cool gel buttons in Photoshop. I originally used some tutorials to learn this then made some tweaks and tricks of my own which I [...]
This is a simple introduction to XSLT, or eXtensible Stylesheet Language Transformation. This is an easy way to apply styles and formatting to XML files.
What is an array? Arrays are common to almost every programming language. An array is simply an ordered map of values, indexed so you can find these values, called elements. These elements can be of multiple datatypes, and can be ordered any way you want. Array ( [a] => 1 [b] => 2 [c] => [...]