我在PHP中使用OAuth API调用获取Gmail联系人并且已成功完成。但是在尝试为每个电子邮件ID插入一个复选框时,我遇到了困难。
以下是foreach
循环的片段,其中填充了电子邮件ID:
$temp = json_decode($xmlresponse, true);
$links = array();
foreach($temp['feed']['entry'] as $cnt) {
$links[] = $cnt['gd$email']['0']['address'] . "</br>";
}
?>
<span><?php echo implode("\n", $links); ?></span>
<input type="checkbox" name="links[]" value="<?php echo implode("\n", $links); ?> /><br />
显示电子邮件ID,但此处没有显示复选框。有人可以帮我这个吗?
答案 0 :(得分:0)
您需要为每个链接项创建一个复选框输入。
foreach($links as $link){
//echoes the name of the id
echo '<span>' . $link . '</span>';
echo '<input type="checkbox" name="links[]" value="' . $link . '"/>';
}