2017-04-20 98 views

回答

1

您可以使用udf1到udf5用戶定義的參數來傳遞您的自定義參數 一個例子,

<input type="hidden" name="udf1" value="<?php echo $custom_var1; ?>" /> 
<input type="hidden" name="udf2" value="<?php echo $custom_var2; ?>" /> 

比你成功頁面,你可以得到這個傳遞的參數數據,

<?php 
... 
$custom_var1 = $_POST["udf1"]; 
$custom_var2 = $_POST["udf2"]; 
... 
?>