|
steph60 2
| Posté : 18-02-2004 16:37
Bonjour,
Je voudrais faire un !onload! dans le body suivant le fichier à télécharger.
Un truc du style:
<?php
$logiciel= $row_logiciels['nom_logiciel'].exe";
if (file_exists($logiciel)) {
echo "<body !onload!=\"$logiciel\">"; }
else {
echo "<body>"; }
?>
Ou alors faut-il insérer le php dans le body:
<body <?php ... ?>>
Qu'en pensez vous?
Steph |  Profil
|
|
Tribal-Dolphin 4374
| Posté : 18-02-2004 16:57
pas certain du tout que ça marche !!
je te conseille d'utiliser les pop-up, ça serait mieux. |  Profil
|
|
steph60 2
| Posté : 23-02-2004 09:18
Bon, finalement j'ai trouvé :
<body <?php $logiciel = "logiciels/".$row_logiciels['nom_logiciel'].".exe";
if (file_exists($logiciel)) {
echo "!onload!=\"ouvre=window.open('$logiciel', '_blank')\""; }?>> |  Profil
|
|