<?php
session_start();
?>
<html>
<head>
<meta name="generator" content="test"/>
<title>XML-reader yeah</title>
</head>
<body>
<center><h2>configuraciones</h2></center>
<hr>
<?php
echo '<a href="AAA.php">configuraciones</a>';
echo " ";
echo '<a href="AAA.php">reader</a>';
?>
<p>
<form name="conf" action="" method="post">
<input type="text" name="pages" value="ingrese el rss">
<input type="submit" name="dale" value="dale">
</form>
</p>
<?php
$x=$_SESSION['x'];
$x++;
$pages[$x]=$_POST['pages'];
var_dump($pages);
$_SESSION['x']=$x;
$_SESSION['pages']=$pages;
echo $x;
$pages=$_SESSION['pages'];
echo"<table border='1' cellspacing='0' cellpadding='2'>";
foreach($pages as $page)
{
echo "<tr>
<td align='right'>$page</td>
<td>aqui va una opcion</td>
</tr>";
}
echo "</table>";
?>
</body>
</html>