url sorgusu için global bir fonksiyon

0 Cevap

Ben bir işlevi yazdım:

function url_query(){
  if (is_numeric($_GET['cmd'])) {
    $get = $_GET['cmd'];
  }
  return $get;
}

ama ben bu fonksiyon küresel olmasını istiyorum. Bu işlev yalnızca eg için çalışır.

index.php?cmd=...

Can I revise this function to use for index.php?page=... and index.php?catID=... etc? Thanks

0 Cevap