我目前正在尝试将xml标题的值发布到一个数组,而该数组又将用于保存假日。我仍然没有收到任何错误消息,并使用var_dump收集以下信息。 (勾选了一些与阅读RSS提要相关的复选框)
array(7) { [0]=> string(21) "{$currentItem->title}" [1]=> string(21)"{$currentItem->title}" [2]=> string(21) "{$currentItem->title}" [3]=> string(21) "{$currentItem->title}" [4]=> string(21) "{$currentItem->title}" [5]=> string(21) "{$currentItem->title}" [6]=> string(21) "{$currentItem->title}" } :S
这对我来说显示数组端正在工作,但它没有将信息集保存在复选框的值参数中,因为所有字符串都是21?。 21是saveBox !!值的引号之间的字符数。
index.php的部分
$index = 1;
foreach ($allHolidays as $currentItem)
{
echo '<tr>';
if (isset($_SESSION['login']))
{
echo '<td valign="top">';
//echo '<input type="hidden" name="guid$index" value="{$currentItem->guid}">';name="saveBox$index[]"
echo '<input type="checkbox" name="saveBox[]" value="{$currentItem->title}">';
echo '</td>';
}
echo '<td>';
echo "<p><a href=\"{$currentItem->link}\">{$currentItem->title}</a><br/>";
echo "{$currentItem->description}<br/>";
echo "{$currentItem->pubDate}<br/></p>";
echo '</td>';
echo '</tr>';
$index++;
}
saveProcess.php
<?php
header("refresh:555; url='index.php'");
session_start();
echo "Thank you for saving a holiday";
echo '<input type="checkbox" name="saveBox[]" value="'.
htmlspecialchars($currentItem->title).'">';
include "top.php";
var_dump($_POST['saveBox']);
try
{
foreach ($_POST['saveBox'] as $savedHoliday)
{
$user = $_SESSION['login'];
$currentSave = $savedHoliday;
$save = "channel/item[title=\"$currentSave\"]";
$holidaysXML = simplexml_load_file('holidays.xml');
$savePath = $holidaysXML->xpath($save);
foreach($savePath as $currentSavePath)
{
echo "<p><a href='{$currentSavePath->link}'>{$currentSavePath->title}</a>"."<br\>".
"{$currentSavePath->description}"."<br\>".
"{$currentSavePath->pubDate}"."<br\></p>";
$insertSave = $db->prepare("INSERT INTO `saved_holidays` (`subscriberID`, `link`, `pubDate`, `title`, `description`)
VALUES ('$user', '$currentSavePath->link', '$currentSavePath->pubDate', '$currentSavePath->title', '$currentSavePath->description')");
$insertSave->execute();
}
}
}
catch(PDOException $e)
{
echo $e->getMessage();
}
答案 0 :(得分:1)
您正在使用构造saveBox$index[]
错误。您只需为输入saveBox[]
命名并忘记索引。当您在接收方阅读$_POST['saveBox']
时,PHP会自动为您提供一个数组。
不要忘记,您还应该对嵌入HTML的所有数据发送htmlspecialchars
:
echo '<input type="checkbox" name="saveBox[]" value="'.
htmlspecialchars($currentItem->title).'">';
和
foreach ($_POST['saveBox'] as $savedHoliday)
顺便说一下,在产生任何输出之前,你应该总是调用header
和session_start
,所以如果top.php
产生输出,它应该移动几行向下。