ユーザーの国を自動的に識別したいプログラムを書いていました。IPを取得してDBに保存するコードを書きました。
$ip = gethostbyname($_SERVER['REMOTE_ADDR']);
保管:
<?php `$result = mysql_query("INSERT INTO `wh_order` (`name`, `email`, `contact`, `itemid`, `itemquantity`, `ip`,`message`, `date`) VALUES('".$name."','".$email."','".$contact."','".$itemid."','".$itemquantity."','".$ip."','".$message."', NOW())");` ?>
また、これはIPアドレスを保存する最良の方法ですか?