English 中文(简体)
如何显示价值?
原标题:How to display a value being passed?

我如何在 lo中展示这一价值?

   echo  <input type="hidden" name="eg_payamt_ .$i. "  id="amount_post_ .$i. "  value=""> ;

该法典正由《刑法》办公室通过。

On the next page, Could it be like this ?

 foreach($_POST["eg_payamt_"] as $key => $payamt)
      {
        echo "eg_payamt_$key => $payamt
 <br>"; 
      }

我看不到任何结果。

你们是否有想法?

最佳回答

页: 1

<input type="hidden" name="eg_payamt[]" value="whatever" />

然后,当你查阅<代码>_$_POST[eg_ Payamt]时,它就已经成为一个阵列,因此,你的法典将几乎是行不通的(你需要失去两条强调)。

问题回答

暂无回答




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

热门标签