English 中文(简体)
我怎么能用一种有php的表格,在目前第url页的末尾添加GET的变量?
原标题:How can I add GET variables to the end of the current page url using a form with php?

我有一些数据库信息正在一页显示。

我使用的是使用<代码>_GET[ page]在url中的变量。 当你点击不同的主角时,将<代码>_GET[网页改为斜体内的新号码,并显示相应的结果。

我有使用<代码>_GET[检索][和_GET[搜索_input]变量的类型和搜索特征。 用户使用通用公平市价进入其搜索标准。 然后,这些变量被放入圆顶,以便显示正确的结果。

我面临的问题是,每当我点击一个星座链接时,它就添加了<条码>_GET[网页,到圆顶端,以及<条码>_GET[检索][美元或<条码>_GET[搜索_input]<>。 在我提交搜索表时,它增加了<代码>_GET[搜索周][代码>和<代码>_GET[搜索_input]<代码>,但时代则增加了<代码>_GET[ page]/code>。

我怎么能够用封顶标签和搜索/ort形式在目前这一页末添加GET变量,而不必删除任何现有的GET变量,但如果这些变量改用同一GET变量名称的话,那么这些变量就会被推翻?

问题回答

为此:

if (strpos($_SERVER[ REQUEST_URI ],  ? ) !== false)
{
  $url = $_SERVER[ REQUEST_URI ] .  &var=value ;
}
else
{
  $url = $_SERVER[ REQUEST_URI ] .  ?var=value ;
}

<a href="<php echo $url;>">Go</a>

请注意,$_SERVER[RequestST_URI]给予你包括立方位保值在内的现程保值。

$query_string = http_build_query(array_merge($_GET, array( page  => $page)));




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签