NullTerminator
Programmer
Just getting started with php. Redhat 8.0 php 4.2.2
Simple form
<form action="run.php" method="POST">
<textarea name="longtext" cols=50 rows=20>
</textarea><br>
<input type="submit" value="Go!">
</form>
and target page
<html><body>
<?= $_POST["longtext"]?>
<br>
<?= $_GET["inp"]?>
<br>
<? phpinfo() ?>
</body></html>
output:
hello world goodbye...longtext=hello world goodbye...
why is this outputting the variable name and value like it is debug mode??
TIA
Jeb Beasley
Simple form
<form action="run.php" method="POST">
<textarea name="longtext" cols=50 rows=20>
</textarea><br>
<input type="submit" value="Go!">
</form>
and target page
<html><body>
<?= $_POST["longtext"]?>
<br>
<?= $_GET["inp"]?>
<br>
<? phpinfo() ?>
</body></html>
output:
hello world goodbye...longtext=hello world goodbye...
why is this outputting the variable name and value like it is debug mode??
TIA
Jeb Beasley