A voir également:
- [PHP] recherche de donné sql et modification
- Suivi de modification word - Guide
- Logiciel gratuit modification pdf - Guide
- Recherche automatique des chaînes ne fonctionne pas - Guide
- Rechercher ou entrer l'adresse mm - recherche google - Guide
- Easy php - Télécharger - Divers Web & Internet
2 réponses
Zep3k!GnO
Messages postés
2025
Date d'inscription
jeudi 22 septembre 2005
Statut
Membre
Dernière intervention
18 novembre 2015
200
23 févr. 2011 à 18:34
23 févr. 2011 à 18:34
si je comprend bien ce que tu veux :
while( $row = $db->sql_fetchrow($result) ) { $template->assign_block_vars('table_rows', array( 'VAR_NAME' => $row['name'], 'VAR_RACE' => $row['race'], 'VAR_CLASS' => $row['class'], 'VAR_LEVEL' => $row['level'], 'VAR_AP' => $row['ap'], 'VAR_PROF1NAME' => str_replace( 'Minage', '/wow/static/images/icons/metier/minage.gif', $row['prof1name']), 'VAR_PROF2NAME' => $row['prof2name'], 'VAR_PROF1VALUE' => $row['prof1value'], 'VAR_PROF2VALUE' => $row['prof2value'], )); }
non, c'est bon j'ai trouver :
while( $row = $db->sql_fetchrow($result) )
{
if($row['prof1name'] == "Minage")
$row['prof1name'] = str_replace('Minage','<img src="./wow/static/images/icons/metier/minage.gif">',$row[prof1name]);
$template->assign_block_vars('table_rows', array(
'VAR_NAME' => $row['name'],
'VAR_RACE' => $row['race'],
'VAR_CLASS' => $row['class'],
'VAR_RANK' => $row['rank'],
'VAR_LEVEL' => $row['level'],
'VAR_AP' => $row['ap'],
'VAR_PROF1NAME' => $row['prof1name'],
'VAR_PROF2NAME' => $row['prof2name'],
'VAR_PROF1VALUE' => $row['prof1value'],
'VAR_PROF2VALUE' => $row['prof2value'],
));
}
mais merci quand même de ta réponse ^^
while( $row = $db->sql_fetchrow($result) )
{
if($row['prof1name'] == "Minage")
$row['prof1name'] = str_replace('Minage','<img src="./wow/static/images/icons/metier/minage.gif">',$row[prof1name]);
$template->assign_block_vars('table_rows', array(
'VAR_NAME' => $row['name'],
'VAR_RACE' => $row['race'],
'VAR_CLASS' => $row['class'],
'VAR_RANK' => $row['rank'],
'VAR_LEVEL' => $row['level'],
'VAR_AP' => $row['ap'],
'VAR_PROF1NAME' => $row['prof1name'],
'VAR_PROF2NAME' => $row['prof2name'],
'VAR_PROF1VALUE' => $row['prof1value'],
'VAR_PROF2VALUE' => $row['prof2value'],
));
}
mais merci quand même de ta réponse ^^