我在Joomla中创建了一个RSForm,它使用cURL连接到API并在第三方系统上创建票证。
提交表单后,会生成一个票号并存储在变量$ticket
中。此变量位于"脚本中,在表单处理后调用"表格的一部分。
我需要在表单提交后显示此变量的值以及感谢信息。
喜欢"感谢您的提交。您的票号是:......"
答案 0 :(得分:1)
这在文档的Getting Started/PHP Scripts部分中有记录。
您只需要修改$thankYouMessage .= "Your ticket number is: $ticket"
,例如:
public class Wire
{
public List<Wire> connectedWires = new List<Wire>();
//Example var we want to set
public int i = 0;
public void Initialize()
{
//Initialization code
//Here we get all connected wires the actual one (this) and we put it in connected wire
}
}