php: Nasıl yeniden (ve eklemek) için orijinal $ _REQUEST değişkenleri

0 Cevap php

jp.php?q=dog or jp.php?h=123&f=14 etc. Is there a better way to resubmit the arguments (other than looping through q,h,f,...) and eg add '&action=update'? This is an attempted looped version:

$req_str="";
foreach($_REQUEST as $req_k => $req_v){
$req_str.=$req_k."=".$req_v."&";
}
echo "<a href=jp.php?".$req_str."&action=update >UPDATE</a>";

UPDATE

I $_SERVER['QUERY_STRING'] I was seyir için ne olduğunu düşünüyorum.

echo "<a href=jp.php?".$_SERVER['QUERY_STRING']."&action=update >UPDATE</a>";

Değişkenleri yerine 'GET' yerine 'POST' yoluyla teslim olsaydı bu işe edip, olsa emin değil misiniz?

0 Cevap