Playground

The Playground features web experiments, concepts, and layouts that push the boundaries of traditional design and showcase the latest in animation techniques.

9 Valuable and Working iPhone Programming Tutorials

by Manoela Ilic

Here is a list of some highly valueable and functioning iPhone programming tutorials (list is open): iPhone View Switching Tutorial iPhone Coding – Learning About UIWebViews by Creating a Web Browser iPhone Dev Sessions: Create a Navigation-Based Application Tutorial: JSON Over HTTP On The iPhone iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 4 iPhone Programming Tutorial {Part 7}: Adding Pictures into your table using Interface builder iPhone Tutorial for Creating a Splash Screen Send in your suggestions!...

How to list files in a directory with PHP

by cody

Here's a simple way to execute the windows dir or the linux ls in PHP Windows: <?php $row = exec('dir',$output,$error); while(list(,$row) = each($output)){ echo $row, "<BR>n"; } if($error){ echo "Error...

1 21 22 23