English 中文(简体)
用_GET到PHP的住宿费
原标题:Using $_GET with for loop in PHP
  • 时间:2011-11-22 10:08:22
  •  标签:
  • php
  • get

我正试图制作一个文字,从卢尔(url/?green&red&blue)获得所有钥匙。 我知道我可以为此使用“GET”阵列,但我并不完全理解如何使用。

我要说的是,它使所有价值观都趋于一致,然后与它做一些事情,例如印刷。

I m stuck here right now so if anyone can help me further it will be much appreciated!

最佳回答

你们可以使用这样的东西:

foreach($_GET as $key => $value){
    echo "$key: $value<br />";
}

各位记得,你们应当使用户投入更加灵敏,因此在生产环境中不使用该守则。

问题回答
foreach ($_GET as $key => $value){
  echo $key.  :  .$value. <br /> ;
}

Just to point out. if your url is (url/?green&red&blue)

你将获得这样的阵列。

   Array
   (
        [green] => 
        [red] => 
        [blue] => 
    )

Your url will need to look like this ( url/?colora=green&colorb=red&colorc=blue ) So you get:

   Array
   (
       [colora] => green
       [colorb] => red
       [colorc] => blue
   )

If you want to get them in javascript, here is the code snippet.

function getUrlVars()
{
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf( ? ) + 1).split( & );
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split( = );
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}

The function returns an array/object with your URL parameters and their values.





相关问题
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 ...

热门标签