اگه پست قبلی را خوندید اگه لحنم یکم تند بود ببخشید
قصد جسارت ندارم
وی فکر کنم منظورشون از این پستی که زده بودن:
این کد بود:
[php]
<meta http-equiv="content-type" content="text/html" charset="utf-8"/>
<?php
ini_set("display_errors",0);
if($_SERVER['REQUEST_METHOD'] == "POST") {
$text_table=$_POST["test"];
}
?>
<html>
<body>
<center>
<table border=1 >
<tr>
<td >
<?echo $text_table; ?>
</td>
</tr>
</table>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<input type="text" name="test" />
<input type="button" value="ارسال" />
</form>
</center>
</body>
</html>
[/php]
ولی هوز Xss رعایت نشده.