hi every body,
apache or php or both don't work properly on redhat 8.0.
the value val1 (in my script below : test1.php ) is sent to the script test2.php which must print the value, but nothing appears.
the same scripts run correctly on pvevious release RH 7.3 for example.
I looked for the fixed bugs on redhat site, i found a new http i upgrade my http
but the problem stays.
of course the httpd is running, and the php too.
Perhaps the problem is in Php ?
I ll try to install the apache from an older version, but I ll get probably dependance problem
thank you for help
here are the 2 scripts : test1.php calls test2.php
test1.php :
<html>
<body>
<form action="test2.php" method="post">
Send a value <input type="text" name="val1" size=10><br>
<center><input type="submit" value="Send"></center><br>
</form>
</body>
</html>
test2.php
<html>
<body>
<br>
<?php
echo "VALUE IS ",$val1;
?>
</body>
</html>
javascript
:smilie('
')