-2

我们在 Joomla 中使用 PHP 时遇到了这个问题。我们希望输出为 3。

在 HTML 中,我们声明:

var address;
address = '3';

并将以下代码放入表格中:

<td><input type="text" id ="amount1.2" name="amount" value="<?php $address = JRequest::getVar('address');?>"/>

在进程/服务器页面中,我们放置以下代码:

$address = JRequest::getVar('address', 'default value goes here', 'post','variable type');

但是输出为0。

4

1 回答 1

1

首先,您的起始代码块是 javascript,而不是 HTML。

其次,在其他代码示例中,您只是为 PHP 变量分配了一些值$address。如果你想让它出现在 HTML 中,你需要printorecho变量:

<td><input type="text" id ="amount1.2" name="amount" value="<?php echo JRequest::getVar('address'); ?>"/>
于 2012-06-01T07:14:46.207 回答