<input type="text" id="user_name" name="user_name" value="harris" />
<input type="password" id="user_password" name="user_password" />
<input type="hidden" id="action" name="action" value="login" />
process_data.php?user_name=rharris&password=s3cr3t72&action=login
process_data.php
<?php
$user_name = filter_input(INPUT_POST, 'user_name');
$user_password = filter_input(INPUT_POST, 'user_password');
$action = filter_input(INPUT_POST, 'action');
?>