PHP小问题 求大神指教!不耽误两分钟时间!
在下面这里重新排下版----分为两个PHP文件============================================1.php<html><body><...
在下面这里重新排下版----
分为两个PHP文件
============================================
1.php
<html>
<body>
<form action="2.php" method="post">
a:<input type="text" size= "10" name="a" /><br>
b:<input type="text" name="b" /><br/>
c:<input type="text" name="c" /><br/>
<input type="submit" name="submit" value="输出结果"/>
</form>
</body>
</html>
============================================
这是第二个PHP文件
============================================
2.php
<html>
<body>
<p>
<?php
$a=$_POST["a"];
$b=$_POST["b"];
$c=$_POST["c"];
$dir = "./image/$a/$b/$c/";
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh))!= false){
$filePath = $dir.$file;
echo "<img src='".$filePath."'/><hr/>";
}
}
closedir($dh);
}
?>
</p>
</body>
</html>
============================================-
localhost/1.php
============================================
============================================
localhost/2.php
============================================
============================================
============================================
输出结果为什么会出现前两个并不存在的路径呢?请问要如何解决? 展开
分为两个PHP文件
============================================
1.php
<html>
<body>
<form action="2.php" method="post">
a:<input type="text" size= "10" name="a" /><br>
b:<input type="text" name="b" /><br/>
c:<input type="text" name="c" /><br/>
<input type="submit" name="submit" value="输出结果"/>
</form>
</body>
</html>
============================================
这是第二个PHP文件
============================================
2.php
<html>
<body>
<p>
<?php
$a=$_POST["a"];
$b=$_POST["b"];
$c=$_POST["c"];
$dir = "./image/$a/$b/$c/";
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh))!= false){
$filePath = $dir.$file;
echo "<img src='".$filePath."'/><hr/>";
}
}
closedir($dh);
}
?>
</p>
</body>
</html>
============================================-
localhost/1.php
============================================
============================================
localhost/2.php
============================================
============================================
============================================
输出结果为什么会出现前两个并不存在的路径呢?请问要如何解决? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询