助けてください、何日か検索して見つかりませんでしたか?
私は「test.php」を持っています
<html>
<body>
<form>
<input type="text" Name="">
<textarea name=""></textarea>
<input type="submit" value="help me">
</form>
</body>
<html>
および「index.php」
<html>
<body>
<?php
$test = "test.php";
?>
<textarea name=""><?php readfile($test ); ?></textare>
</body>
</html>
私の問題、送信ボタンがテキストエリアの外にあるのはなぜですか? 文字列または値として読み取らないのですか?
ありがとう :)