Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/243.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 通过href设置变量_Php_Html_Href - Fatal编程技术网

Php 通过href设置变量

Php 通过href设置变量,php,html,href,Php,Html,Href,因此,这个链接需要设置busqueda=null、orden=3和categoria='' 我可以把它存起来,但是我不知道如何保存其他的 <a href="buscar.php?busqueda=null">Catalogo</a> 您可以使用&符号接受多个get参数 片段 <a href="buscar.php?busqueda=null&orden=3&categoria=''">Catalogo</a> 您可以使用&符号接

因此,这个链接需要设置busqueda=null、orden=3和categoria='' 我可以把它存起来,但是我不知道如何保存其他的

<a href="buscar.php?busqueda=null">Catalogo</a>

您可以使用
&
符号接受多个get参数

片段

<a href="buscar.php?busqueda=null&orden=3&categoria=''">Catalogo</a>

您可以使用
&
符号接受多个get参数

片段

<a href="buscar.php?busqueda=null&orden=3&categoria=''">Catalogo</a>