使用php将所选字段用作源路径/目录来显示图像

时间:2018-03-01 02:10:00

标签: javascript php html css

如何根据3个选择字段(省,年,月)显示图像文件。地点和年份是文件夹,月份是图像文件。提交后,图像应显示在选择框下方的框中。

有人可以帮忙吗?

提前谢谢!

here's how it looks

1 个答案:

答案 0 :(得分:0)

你是说这个意思吗?

<?php
if(isset($_POST['submitBtn'])) {

    $place = $_POST['province'] . '/';
    $year = $_POST['year'] . '/';
    $month = $_POST['month'] . '.jpg'; // or whatever your format is

    echo '<img src="' . $place . $year . $month . '">';

}
?>