I have phpinfo() text which I want to post and display on another PHP page.
My code:
###File index.php
<html>
<form action = "go.php" method = "post">
<input type = "text" name = "msg"><br><br>
<input type = "submit" value = "Submit">
</form>
<html>
###File go.php :
<?php
$message = $_POST['msg'];
echo "Message : ". $message;
?>
Can someone tell me how I can show PHP info when sending phpinfo() text with post data?