Envoyé par
daquin
Bonjour,
J'ai essayé ça:
dans le fichier monfichier.php:
1 2 3 4 5 6 7 8
| <?php
print ("<HTML><HEAD><TITLE>Test</TITLE></HEAD>");
print ("<BODY>");
print ("<H1>Test</H1>");
$param="hello";
include("monfichier.asp");
?> |
Ton fichier ASP ne sera interprété que si tu l'appelles de manière à ce qu'il soit interprété. En faisant ton
include("monfichier.asp");
tu ne demande pas à IIS d'interpréter ton fichier ASP. Ce qu'il faudrait faire c'est plus :
1 2 3 4 5 6 7 8 9 10 11
| <?php
print ("<HTML><HEAD><TITLE>Test</TITLE></HEAD>");
print ("<BODY>");
print ("<H1>Test</H1>");
$param="hello";
$servername = "localhost";
$serverport = 80;
$path = "the path to my ASP script";
include("http://$servername:$serverport/$path/monfichier.asp?param=".$param);
?> |
Partager