Useful notes & manuals
from the
world wide web
L:
P:
Register now!
<<<1>>>
Convert links into clickable hyperlinks | read more.. PHP
Solution from: http://www.totallyphp.co.uk/code/convert_links_into_clickable_hyperlinks.htm Created by tlw on 13.10.2024 @ 03:06

A function to change an email address or URL into a clickable HTML hyperlink using eregi_replace.

Calculating age by birthday | read more.. PHP
Source code from: http://snippets.dzone.com/posts/show/1310 Created by tlw on 13.10.2024 @ 03:06

With this function you can calculate the age of a person

Creating an upload progress bar in PHP with APC | read more.. PHP
Article from: http://www.ultramegatech.com/blog/2008/12/creating-upload-progress-bar-php/ Created by tlw on 13.10.2024 @ 03:06

In this tutorial I will explain how to create a progress bar for PHP file uploads. There is no method built into PHP for returning the status of an upload in progress, so this requires a module called the Alternative PHP Cache (APC). This allows you to store data across sessions and includes built-in functionality for storing/returning file upload stats.

Automatic merging and versioning of CSS/JS files with PHP | read more.. PHP
Solution from: http://www.ejeliot.com/blog/72 Created by tlw on 13.10.2024 @ 03:06

Most sites include a number of CSS and JavaScript files. Whilst developing it's usually easier to manage them as separate files but on a live site it makes sense to merge files to reduce the number of HTTP requests the browser has to make. For JavaScript this is particularly important as browsers block rendering whilst downloading.

Submit a form using POST method through PHP | read more.. PHP
Solution from: unknown Created on 13.10.2024 @ 03:06

To submit a form using POST method through PHP, just add the data to be posted as header. This essentially saves one extra html page sent to the browser when user has to be redirected. Mostly found this technique useful for redirecting to payment gateways.

Remove unwanted symbols from the text | read more.. PHP
Solution from: unknown Created on 13.10.2024 @ 03:06

$search = preg_replace("/[^(w)|(x7F-xFF)|(s)]/", " ", $search);

PHP regular expressions examples | read more.. PHP
Article from: http://www.roscripts.com/PHP_regular_expressions_examples-136.html Created on 13.10.2024 @ 03:06

PHP regular expressions examples

Building A PHP-Based Mail Client | read more.. PHP
Solution from: http://www.devshed.com/c/a/PHP/Building-A-PHPBased-Mail-Client-part-1/ Created on 13.10.2024 @ 03:06

Building A PHP-Based Mail Client

Format number | read more.. PHP
Source code from: http://www.php.net/manual/en/function.sprintf.php Created on 13.10.2024 @ 03:06

sprintf(_("%.2fMB"), $info->Size / (1024 * 1024));

<<<1>>>
 
Created by THE LOST WEB © 2009-2012