如何将搜索字符串附加到网址的末尾,而不是删除当前帖子
<input class="searchBox" type="text" name="search" placeholder="Search Here">
<input type="submit" value="">
我现在有这个,它删除了网址末尾的其他Post变量,但我想要它做的是将它追加到最后
例如,我有page.php?id = 123 ..用户搜索并且我希望它显示page.php?id = 123&amp; search = text,但此刻它会替换它并进行翻页。 PHP?搜索=文本
答案 0 :(得分:2)
您可以在其他输入之前插入隐藏的输入。此外,您的表单必须使用get来提交以实现您的目标。
internal void UpdateLastImageDownloaded(string fullfilename)
{
this.BeginInvoke((MethodInvoker)delegate()
{
try
{
//pictureBoxImage.Image = Image.FromFile(fullfilename);
//Bitmap bmp = new Bitmap(fullfilename);
//pictureBoxImage.Image = bmp;
System.IO.FileStream fs;
// Specify a valid picture file path on your computer.
fs = new System.IO.FileStream(fullfilename, System.IO.FileMode.Open, System.IO.FileAccess.Read);
pictureBoxImage.Image = System.Drawing.Image.FromStream(fs);
fs.Close();
}
catch (Exception exc)
{
Logging.Log.WriteException(exc);
}
});
}
答案 1 :(得分:0)
添加
<input type='hidden' name='id' value='".$_GET['id']."'>;
进入表格