Ouvrir un nouvel onglet à partir de la fonction header
aureliemerlin
Messages postés82Date d'inscriptionjeudi 24 juin 2010StatutMembreDernière intervention17 avril 2013
-
20 avril 2011 à 15:09
Utilisateur anonyme -
21 avril 2011 à 20:18
Bonjour à tous,
Je voudrais savoir si il est possible d'ouvrir une page dans un nouvel onglet en utilisant header ???
voici le code utilisé :
<?php
$CodeCom = $_GET['CodeCom'];
if (isset($_GET['ChoixA']) == 'oui')
{
//facture payées
$DateDeb = $_GET['DateDeb'];
$DateFin = $_GET['DateFin'];
//echo htmlspecialchars($CodeCom, ENT_QUOTES, 'UTF-8');
//echo htmlspecialchars($DateDeb, ENT_QUOTES, 'UTF-8');
//echo htmlspecialchars($DateFin, ENT_QUOTES, 'UTF-8');
header("Location: printLFP.php?CodeCom=$CodeCom&DateDeb=$DateDeb&DateFin=$DateFin");
}
if (isset($_GET['ChoixB']) == 'oui')
{
//facture non payée
$DateDeb = $_GET['DateDeb'];
$DateFin = $_GET['DateFin'];
header("Location: printLFNP.php?CodeCom=$CodeCom&DateDeb=$DateDeb&DateFin=$DateFin");
}
if (isset($_GET['ChoixC']) == 'oui')
//les deux
{
$DateDeb = $_GET['DateDeb'];
$DateFin = $_GET['DateFin'];
header("Location: printLF.php?CodeCom=$CodeCom&DateDeb=$DateDeb&DateFin=$DateFin"); }
?>
<?php
function changedatefrus($datefr)
{
$dateus=$datefr{6}.$datefr{7}.$datefr{8}.$datefr{9}."-".$datefr{3}.$datefr{4}."-".$datefr{0}.$datefr{1};
return $dateus;
}
?>