我正试图制作一个文字,从卢尔(url/?green&red&blue)获得所有钥匙。 我知道我可以为此使用“GET”阵列,但我并不完全理解如何使用。
我要说的是,它使所有价值观都趋于一致,然后与它做一些事情,例如印刷。
I m stuck here right now so if anyone can help me further it will be much appreciated!
我正试图制作一个文字,从卢尔(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.
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 ...
<?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 = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
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 ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
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? 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 ...