',$ligne['port_prix'],' Euro';
// Par ceci (on utilise € qui est universel) :
echo '
', number_format($ligne['port_prix'], 2, ',', ' '), ' € | ';
header('Content-Type: text/html; charset=utf-8');
session_start();
include_once("inc-connexion.php");
include("inc-configuration.php");
// Inclusion du dictionnaire (une seule fois suffit)
include($EMPL_FICHIERS."dictionnaire/pages.php");
// Correction : On n'inclut pas une phrase comme un fichier.
// On l'affiche ou on l'assigne à une variable.
$titre_ajout = "Ajout d'un frais de port";
// Sélection des frais de port (Ajout de port_article qui manquait à la liste)
$sql_sel_port = "SELECT port_nom, port_destination, port_prix, port_article
FROM ".$PREFIXE."port
ORDER BY port_destination";
$rqt_sel_port = mysql_query($sql_sel_port) or die(mysql_error());
include_once("inc-entete.php");
?>