将php变量从表单输入传递到作为回显一部分的href链接中

问题描述 投票:0回答:1

输入..

<input class="myButton" style="width: 60px" type="number" min="1" max="200" step="1"  name='pages' value='<?php echo "$pages";?>'/> 

我试图传递变量$ pages

if(count($uploadedFiles)>0){
                        echo "<b>Uploaded:</b>";
                        echo "=";
                        foreach($uploadedFiles as $fileName)
                        {
                            echo " ".$fileName.",";
                        }
                        $var=$_POST['pages'];
                        echo '<br><a href="http://www.myurl.com/index.php?pages=';$_GET["var"];" target="_blank">View Pages</span></a>';
                                            }                                           
                }
                else{
                    echo "ERROR: Please press the browse button and select a CSV file to upload.";
                }

这不会添加所需的数字,因此单击的URL成为..http://www.myurl.com/index.php?pages=x(其中x是在表单中输入的数字)

php html forms variables url
1个回答
0
投票

我现在对此采取了完全不同的方法,并使其按我的意愿运行。

非常感谢您的帮助和指导。

<form action="myurl.com/index.php?pages=$pages" method="get" target="_blank"> 
© www.soinside.com 2019 - 2024. All rights reserved.