Hi,
Thanks, now I feel more confident about using them.
But for some reason the form input is not saved in the variable ( _SESSION['lineArray'][$i][lineText] ). Here is what I have:
$line.= "<textarea style=\"background:" . $rbgColor . "\" name=\"_SESSION['lineArray'][$i][lineText]\" cols=\"70\" ";
$line.= "rows=\"1\">{$_SESSION['lineArray'][$i][lineText]}</textarea>";
If it is written without session variables it does work:
// $line.= "<textarea style=\"background:" . $rbgColor . "\" name=\"lineArray[$i][lineText]\" cols=\"70\" ";
// $line.= "rows=\"1\">{$lineArray[$i][lineText]}</textarea>";
Thanks.