Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. foreach ($_POST as $key => $value)
  2. echo "Field ".htmlspecialchars($key)." is ".htmlspecialchars($value)."<br>";
  3.  
  4. foreach ($_POST as $key => $value)
  5. $body .= $key . ' -> ' . $value . '<br>';
  6.  
  7. $body = print_r($_POST, true);
  8.  
  9. $email_text = var_export($_POST, true);
  10.  
  11. $input_data = $_POST;
Add Comment
Please, Sign In to add comment