Capture form submitter's IP address
Is there a way to capture a user's IP address when they submit a form?
Rick
Hi Rick,
At its simplest:
<?php
$form->data['ip_address'] = $_SERVER['REMOTE_ADDR'];
?>
Bob
This topic is locked and no more replies can be posted.