我有一个包含以下内容的 PHP 文件:
<?php
$myflash = $_GET["flashname"];
$mytitl = $_GET["titlname"];
$myqgif = $_GET["flashgif"];
$mytxt = $_GET["txtname"];
?>
<?php
include('01.txt');
?>
它正确显示。但是当我使用以下内容时:
<?php
include('<?php echo $mytxt; ?>.txt');
?>
它不显示。