KLoning Spoon
Textualizer is a jQuery plug-in that allows you to transition through blurbs of text.

Textualizer is a jQuery plug-in that allows you to transition through blurbs of text.

Coding Apple’s Navigation Bar Using CSS Sprites, This tutorial is not going to go in depth about all the benefits of sprites, but will show you how to use the technique correctly.

Coding Apple’s Navigation Bar Using CSS Sprites, This tutorial is not going to go in depth about all the benefits of sprites, but will show you how to use the technique correctly.

and here the part 2 of css3 image styles.

david and goliath

david and goliath

Distractions are your worst enemy

Distractions are your worst enemy

This tutorial will cover dynamically loading images from an XML file and then deal with inconsistencies in image dimensions using the GreenSock Tween Max animation library

Font Pacifico

Font Pacifico

phpFileManager is a complete filesystem management tool on a single file. Among the features of phpFileManager: . server info . directory tree . copy/move/delete/create/rename/edit/view/chmod files and folders . tar/zip/bzip/gzip . multiple uploads . shell/exec . works on linux/windows . php4/php5/apache2 compatible . english/português support

phpFileManager is a complete filesystem management tool on a single file.

Among the features of phpFileManager:
. server info
. directory tree
. copy/move/delete/create/rename/edit/view/chmod files and folders
. tar/zip/bzip/gzip
. multiple uploads
. shell/exec
. works on linux/windows
. php4/php5/apache2 compatible
. english/português support

<?php
$fn = "news.txt";
if (isset($_POST['content']))
{
    $content = stripslashes($_POST['content']);
    $fp = fopen($fn,"w") or die ("Error opening file in write mode!");
    fputs($fp,$content);
    fclose($fp) or die ("Error closing file!");
}
?>
<center>
<form action="<?php echo $_SERVER["PHP_SELF"] ?>" method="post">
    <textarea rows="25" cols="40" name="content"><?php readfile($fn); ?></textarea><br /><br />
    <input type="submit" value="Submit">
</form>
</center>

leverage the WordPress API to define our own custom meta boxes for attaching a document (such as a PDF) to our WordPress pages.