热搜:NVER node 开发 php

input 之间怎么传递数据是在同一页面

2024-08-15 20:20:01
input 之间怎么传递数据是在同一页面

input 之间怎么传递数据是在同一页面
怎么把pripath和tfilename2 的数据 传给tfilename      就一个页面

页面提交后tfilename    值得到    pripath和tfilename2 的数据

                   根目录	        


回复讨论(解决方案)

     根目录


点传递按钮。

哦哦哦噢噢噢噢

PHP可以实现吗

<?phpheader("Content-type: text/html; charset=utf-8");$pripath = "c:\\windows\\";$tfilename2 = "test.txt";?>
根目录
<?phpif (isset($_POST['submit'])) { $pripath = $_POST['pripath']; $pripath = (!get_magic_quotes_gpc()) ? addslashes($pripath) : $pripath; $tfilename2 = $_POST['tfilename2']; $tfilename2 = (!get_magic_quotes_gpc()) ? addslashes($tfilename2) : $tfilename2; $str = "\r\n"; echo $str;}?>