03-02-2008, 11:35 PM
|
#6 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
Try something like this  See attached.
Therefore to use it you would do something like the following, as DeMo suggested:
php Code:
$pVersion = new TalkPHP_VersionChecker (); $fCurrentVersion = 1. 0; $fLatestVersion = (float ) $pVersion-> getVersion(); if($fCurrentVersion < $fLatestVersion){ echo 'Version: ' . $fLatestVersion . '<br />'; echo 'Link: <a href="' . $pVersion-> getLink() . '">Download Update</a>'; }
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
Last edited by Wildhoney : 03-03-2008 at 12:18 AM.
|
|
|