<?php $current_rel = "1.8.5"; // Function to get files name is correct to our rom /pack function check_files_name($file, $marker) { return strpos($file, $marker) === 0; } // EF // Function to get device name from file name function device_name($file) { $device = substr($file, 12, 33); $device = substr($device, 0, -10); return $device; } // Function to get device name from file name function device_name2($file) { $device = substr($file, 18, 33); $device = substr($device, 0, -10); return $device; } // Deodex ROM if ( ($handle = opendir('/home/miuiandroid/public_html/rom-dev/output/')) ) { // Start table echo '<table border="0" cellspacing="0" cellpadding="0" width="580"> <tbody>'; while( false !== ($file = readdir($handle)) ) { if(check_files_name($file, 'miuiandroid')) { // Loop table for devices echo '<tr> <td><img src="http://miuiandroid.com/wp-content/uploads/'.device_name($file).'.png" width="115" height="201" /></td> <td></td> <td valign="top">'; echo '<h3>'.device_name($file).' '.$current_rel.'</h3>' . "\n"; echo '<span class="deodex"><a href="http://deodex.miuiandroid.com/miuiandroid_'.device_name($file).'-'.$current_rel.'.zip">Download deodex</a></span>'; if(device_name($file) == "G2X") { echo ''; } else { echo '<span class="langpack"><a href="http://packs.miuiandroid.com/miuiandroid-'.$current_rel.'_'.device_name($file).'-EN-PACK1_2.3.5.zip">Download language pack</a></span>'; } echo '<div class="infobox"><div class="md5">Deodex MD5: <span>'.md5_file("/home/miuiandroid/public_html/rom-dev/output/miuiandroid_".device_name($file)."-".$current_rel.".zip").'</span></div>'; if(device_name($file) == "G2X") { echo ''; } else { echo '<div class="md5">Language pack MD5: <span>'.md5_file("/home/miuiandroid/public_html/rom-dev/packs/miuiandroid-".$current_rel."_".device_name($file)."-EN-PACK1_2.3.5.zip").'</span></div> } </div>'; echo '</td> </tr>'; } } echo '</tbody> </table>' . "\n"; // close directory closedir($handle); } ?> <h2>Unofficial ports</h2> <table width="500" border="0" cellspacing="0" cellpadding="0"> <tbody> <tr> <td><img src="http://miuiandroid.com/wp-content/uploads/2011/04/desire-generic.png" alt="HTC Desire CDMA (Bravo)" width="115" height="201" /></td> <td></td> <td valign="top"> <h3>HTC Desire (CDMA Bravo) 1.7.8 & 2.4.3a</h3> Download: <a href="http://forums.miuiandroid.com/forumdisplay.php?23-HTC-Desire-CDMA" target="_blank">ROM</a> MD5: (See forum link in above) Credit:skuddy</td> </tr> <tr> <td><img src="http://miuiandroid.com/wp-content/uploads/2011/04/usa-droid.png" alt="Motorola Droid" width="115" height="201" /></td> <td></td> <td valign="top"> <h3>Motorola Droid 1.7.29</h3> Download: <a href="http://magicmonkeystudios.com/android/MIUI/miuiandroid_MotoDroid-Dev-1.7.29.0.zip" target="_blank">ROM</a> MD5: b44df38c82a7902630e97956e8ea789d CREDIT: TreyM (MIUI Android Staff)</td> </tr> <tr> <td><img src="http://www.miuiandroid.com/wp-content/uploads/Evo4G.png" alt="HTC Evo 4G" width="115" height="201" /></td> <td></td> <td valign="top"> <h3>HTC Evo 4G 1.7.29</h3> Download: <a href="http://forums.miuiandroid.com/showthread.php?8340-ROM-MIUI-7.29.11-Beta-7" target="_blank">http://forums.miuiandroid.com/showthread.php?8340-ROM-MIUI-7.29.11-Beta-7</a> MD5: f433d97aec4e0b15fe7cfa29873c2f90 CREDIT: barnacles10 </td> </tr> <tr> <td><img src="http://www.miuiandroid.com/wp-content/uploads/AcerLiquid.png" alt="Acer Liquid" width="115" height="201" /></td> <td></td> <td valign="top"><h3>Acer Liquid 1.8.5</h3> Download: <a href="http://forums.miuiandroid.com/showthread.php?7878-MIUI-1.8.5" target="_blank">http://forums.miuiandroid.com/showthread.php?7878-MIUI-1.8.5</a> CREDIT: Lens_Flare </td> </tr> <tr> <td valign="top"><img src="http://www.miuiandroid.com/wp-content/uploads/SGS2.png" alt="Samsung Galaxy S II" width="115" height="201" /></td> <td></td> <td valign="top"><h3>Samsung Galaxy S II 1.7.29</h3> Download: <a href="http://forums.miuiandroid.com/showthread.php?7732-ROM-MIUI-for-GalaxyS2-1.7.29-DEV-bmarko82" target="_blank">http://forums.miuiandroid.com/showthread.php?7732-ROM-MIUI-for-GalaxyS2-1.7.29-DEV-bmarko82</a> CREDIT: bmarko82 </td> </tr> </tbody> </table>