I GOT IT!!!!!! KINDA!? Anyone know a way to transfer it to another file on a form?
Filename : anything you want
<form action="test.php" method="POST">
<input name="username" type="text" size="15">
<BR>
<BR>
<input name="password" type="password" size="15">
<BR>
<input name="user_ip" type="hidden">
<BR>
<input name="submit" type="submit">
</form>
Filename : test.php // or just change the action in the form
<?php
$username = $_POST['username'];
$password = $_POST['[password'];
$user_ip = $_SERVER['REMOTE_ADDR'];
$user_ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
$user_ip = $_SERVER['REMOTE_ADDR'];
echo "$username";
echo "<BR>";
echo "$password";
echo "<BR>";
echo "$user_ip";
echo "<BR>";
echo "$user_ip";
echo "<BR>";
echo "$user_ip";
?>
😃 😃 😃