0

我是 php 新手,希望得到一些帮助来解决我遇到的问题。我有一个包含 3 个可见输入字段的表单:姓名、电子邮件地址、电话号码。它还包括 3 个隐藏字段,一个是设置为 2500 的值,第二个是货币,第三个需要是唯一 ID。我需要有关如何生成唯一 ID 并将文本/值以另一种形式传递到输入字段的帮助。下面是我的代码。我需要在输入字段商人ID上显示随机ID。谢谢

<form action="https:urlthathastheform" method="post">
    <input type="hidden" id="merchantid" name="merchantid" />  
    <input type="hidden" id="currency" name="currency" value="$" />

    <label for="names">Names</label>
    <input type="text" name="names" id="names" />

    <label for="email_address">Email Address</label>
    <input type="text" name="email_address" id="email_address" />

    <label for="phone_number">Phone Number</label>
    <input type="text" name="phone_number" id="phone_number" />

    <label for="amount">Amount</label>
    <input type="text" name="amount" value="2500" />

    <input type="submit" name="submit" value="submit" />  
</form>
4

1 回答 1

0

php具有生成唯一ID的功能。

<input type="hidden" id="merchantid" name="merchantid" value="<?php echo uniqid();>"/> 

注意,这个 id 是基于系统时钟的。http://php.net/manual/en/function.uniqid.php

于 2013-03-04T15:21:11.160 回答