English 中文(简体)
PHP 美元
原标题:PHP $_POST values

i 储存“POST”数据没有什么问题,认为这也许会混淆自己。

So i have some data being posted from a loop, this data is posted as id and points, but each has a number to it so if three records are being posted we ll have

id1, id2, id3 points1, points2, points3

收集。 现在有一米长的时间,用 lo子通过数据,将其分为两阵列。 问题是,如果我想要储存数据,就不得不使用上述表格中的一例。 我的法典

for($i = 0; i< $_POST[ count ]; i++){
    //Order input data into an array
    $inputid[$i] = $_POST[ id1 ];

}

现在,补贴金额的一部分(id1)必须与补助费中的一美元相同,这样,补贴就会与补贴一样增加。

由于这一帮助,我希望我解释了这个问题。

最佳回答
for($i = 0; i< $_POST[ count ]; i++){
    //Order input data into an array
    $inputid[$i] = $_POST[ id .$i];

}
问题回答

为什么不命名投入:name="id ***>name='points ***>,因此,你有$_POST[ id] [...]_$_POST[各点][

参考: Variables From External Sources (specifically Example #3

首先,除非你首先检查这些变量,以确保这些变量不包含任何新内容,否则不会在休息室或其他任何东西中使用持久性有机污染物。

你们可以在 lo里尝试:

$idnumber = "id" . $i;
$inputid[$i] = $_POST[$idnumber];

简单地加固指数中的缩略语:

for($i = 0; i< $_POST[ count ]; i++){
    //Order input data into an array
    $inputid[$i] = $_POST[ id  . ($i+1)];
}

如果我理解这个问题,已经知道将张贴大量投入,因此我不理解,为什么你完全需要把这些投入添入阵列。 为什么不这样做:

$value = array($_POST[ id1 ], $_POST[ id2 ], $_POST[ id3 ], $_POST[ points1 ], $_POST[ points2 ], $_POST[ points3 ]);

而不是像样:

for(x=0;x<$value.count;x++){
    $value[x]=$value.$x;
}

工作

如果你不错,那么你就希望贴上与加固式加固式加瓦美元一样的标签。

for($i = 0; $i< $_POST[ count ]; $i++){
    $post_id =  id .$i;
    $inputid[$i] = $_POST[$post_id];

}

我认为你可以做这样的事情:

for($i = 0; $i< $_POST[ count ]; $i++){
//Order input data into an array
$inputid[$i] = $_POST["id$i"];
}

这是你们想要的吗?





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

热门标签