5
1
Fork 0
mirror of https://github.com/Anvilcraft/jensmemes synced 2024-09-25 10:58:56 +02:00
jensmemes/website/incl/clientIP.php

13 lines
264 B
PHP
Raw Normal View History

2020-07-22 15:27:17 +02:00
<?php
include ('../dbcon.php');
$clientIP =$_SERVER['REMOTE_ADDR'];
$tk = $_COOKIE['token'];
$sql = "UPDATE `token` SET `latest-ip` = '$clientIP' WHERE `token` = '$tk';
";
if(!mysqli_query($con, $sql)){
echo "Err_ Sending Client IP".mysqli_error($con);
}
?>