Couplage des deux montants en php
Fermé
maria
-
31 mai 2010 à 01:46
ChrisCompote Messages postés 73 Date d'inscription mardi 8 juin 2010 Statut Membre Dernière intervention 19 juin 2010 - 8 juin 2010 à 22:53
ChrisCompote Messages postés 73 Date d'inscription mardi 8 juin 2010 Statut Membre Dernière intervention 19 juin 2010 - 8 juin 2010 à 22:53
A voir également:
- Couplage des deux montants en php
- Easy php - Télécharger - Divers Web & Internet
- Deux ecran pc - Guide
- Itinéraire google map entre deux adresses - Guide
- Deux comptes whatsapp - Guide
- Faire deux colonnes sur word - Guide
1 réponse
ChrisCompote
Messages postés
73
Date d'inscription
mardi 8 juin 2010
Statut
Membre
Dernière intervention
19 juin 2010
8
8 juin 2010 à 22:53
8 juin 2010 à 22:53
J'imagine un tableau php
$tab = array(
array('num_attachement'=>...,'montanttotale_facture'=>...,'montanttotale_attachement'=>...),(...)
);
L'idée est la suivante
$html = "<table>";
foreach($tab as $sous_tab)
{
$html .= "<tr><td>";
$html .= $sous_tab['num_attachement'];
$html .= "</td><td>";
$html .= $sous_tab['montanttotale_facture'];
$html .= "</td><td>";
$html .= $sous_tab['montanttotale_attachement'];
$html .= "</td><td>";
if($sous_tab['montanttotale_facture'] == $sous_tab['montanttotale_attachement'])
{
$html .= "Aucun choix";
}
if($sous_tab['montanttotale_facture'] == '')
{
$html .= "Choix 'montanttotale_attachement'";
}
if($sous_tab['montanttotale_attachement'] == '')
{
$html .= "Choix 'montanttotale_facture'";
}
if($sous_tab['montanttotale_facture'] != '' &&
$sous_tab['montanttotale_attachement'] != '' &&
$sous_tab['montanttotale_facture'] != sous_tab['montanttotale_attachement'])
{
$html .= "Choix 'montanttotale_facture' ou 'attachement'";
if($sous_tab['montanttotale_facture'] < sous_tab['montanttotale_attachement'])
$html .= "Choix minimum ( 'montanttotale_facture')";
if($sous_tab['montanttotale_attachement'] < sous_tab['montanttotale_facture'])
$html .= "Choix minimum ( 'montanttotale_attachement')";
}
$html .= "</td></tr>";
}
$html .= "</table>";
Voilà l'idée, à toi de faire la présentation pour laisser effectivement le choix
(case à cocher, liste déroulante, lien ...)
$tab = array(
array('num_attachement'=>...,'montanttotale_facture'=>...,'montanttotale_attachement'=>...),(...)
);
L'idée est la suivante
$html = "<table>";
foreach($tab as $sous_tab)
{
$html .= "<tr><td>";
$html .= $sous_tab['num_attachement'];
$html .= "</td><td>";
$html .= $sous_tab['montanttotale_facture'];
$html .= "</td><td>";
$html .= $sous_tab['montanttotale_attachement'];
$html .= "</td><td>";
if($sous_tab['montanttotale_facture'] == $sous_tab['montanttotale_attachement'])
{
$html .= "Aucun choix";
}
if($sous_tab['montanttotale_facture'] == '')
{
$html .= "Choix 'montanttotale_attachement'";
}
if($sous_tab['montanttotale_attachement'] == '')
{
$html .= "Choix 'montanttotale_facture'";
}
if($sous_tab['montanttotale_facture'] != '' &&
$sous_tab['montanttotale_attachement'] != '' &&
$sous_tab['montanttotale_facture'] != sous_tab['montanttotale_attachement'])
{
$html .= "Choix 'montanttotale_facture' ou 'attachement'";
if($sous_tab['montanttotale_facture'] < sous_tab['montanttotale_attachement'])
$html .= "Choix minimum ( 'montanttotale_facture')";
if($sous_tab['montanttotale_attachement'] < sous_tab['montanttotale_facture'])
$html .= "Choix minimum ( 'montanttotale_attachement')";
}
$html .= "</td></tr>";
}
$html .= "</table>";
Voilà l'idée, à toi de faire la présentation pour laisser effectivement le choix
(case à cocher, liste déroulante, lien ...)