PHP - Probleme d'eciture
Résolu/Fermé
Utilisateur anonyme
-
8 févr. 2010 à 17:13
servabat Messages postés 1881 Date d'inscription jeudi 2 octobre 2008 Statut Membre Dernière intervention 17 septembre 2012 - 8 févr. 2010 à 17:22
servabat Messages postés 1881 Date d'inscription jeudi 2 octobre 2008 Statut Membre Dernière intervention 17 septembre 2012 - 8 févr. 2010 à 17:22
1 réponse
servabat
Messages postés
1881
Date d'inscription
jeudi 2 octobre 2008
Statut
Membre
Dernière intervention
17 septembre 2012
269
8 févr. 2010 à 17:22
8 févr. 2010 à 17:22
peut etre en divisant la taille par 1000 comme ceci :
<?php
//////////////////////////////////////////////
// calcul des tailles de disque : CD ou DVD //
//////////////////////////////////////////////
$taille="";
$taille=$row_AD['FILESIZE'];
$taillego= ($row_AD['FILESIZE'] / 1000);
$taillemo= ($row_AD['FILESIZE'] * 1000);
?>
<?php if ($taille >= 1000) { ?>
<td><strong><?php echo $taillego; ?></strong> Go</td>
<?php } ?>
else
<?php if ($taille < 1000) { ?>
<td><strong><?php echo $taillemo; ?></strong> Mo</td>
<?php } ?>
<?php
//////////////////////////////////////////////
// calcul des tailles de disque : CD ou DVD //
//////////////////////////////////////////////
$taille="";
$taille=$row_AD['FILESIZE'];
$taillego= ($row_AD['FILESIZE'] / 1000);
$taillemo= ($row_AD['FILESIZE'] * 1000);
?>
<?php if ($taille >= 1000) { ?>
<td><strong><?php echo $taillego; ?></strong> Go</td>
<?php } ?>
else
<?php if ($taille < 1000) { ?>
<td><strong><?php echo $taillemo; ?></strong> Mo</td>
<?php } ?>