I have integrated an XPath search to my site, when a user searches they are presented with their results as well as a check box for each, shown in the following way.
<form action="saveProcess.php" method="POST">
<?php
foreach ($holidays as $holiday)
{
$resultTable .= "<p><a href=\"{$holiday->link}\">{$holiday->title}</a>" . "<br/>" .
"{$holiday->pubDate}" . "<br>" .
"{$holiday->description}" .
"<input type='checkbox' name='chk[]' value='{$holiday->title}' />" . "<br /></p>";
}
?>
<input type="submit" name="btnOutput" value="submit"/>
</form>
When a check box is clicked and the submit button clicked i want the value of {$holiday->title} to be posted to saveProcess.php and echoed. currently i am met with the error Notice: Undefined index: chk in saveProcess.php
<?php
$title = $_POST['chk']
echo $title;
?>
What is the reason for this? could it be that the XML file is not instantiated within the saveProcess.php file or is there a syntax error I'm not seeing?
Thanks

<?php echo print_r($_POST); ?>in saveProcess.php? – hohner Apr 9 '12 at 10:09Array ( [btnOutput] => submit ) 1– Darren Burgess Apr 9 '12 at 10:13btnOutput submit– Darren Burgess Apr 9 '12 at 10:25