With the popularity and development of the Internet, more and more applications need to obtain the IP address and MAC address of visitors. In many cases, we need to use JavaScript to achieve this function.
This article will introduce how to use JavaScript to obtain the visitor's IP address and MAC address and write them into the database.
1. Obtain the visitor's IP address
Obtaining the visitor's IP address in Javascript is mainly obtained by accessing the back-end server. A common method is to send a request to the server and have the server return the browser's IP address. The following is a sample code:
var xhr = new XMLHttpRequest(); xhr.open('GET', 'https://api.ipify.org', true); xhr.onreadystatechange = function() { if (xhr.readyState === 4) { if (xhr.status === 200) { var ip = xhr.responseText; console.log(ip); // 将ip地址写入数据库 } else { console.error(xhr.statusText); } } }; xhr.send(null);
This code uses XMLHttpRequest to send a GET request to the https://api.ipify.org URL, and obtains the IP address returned by the server after the request is completed.
In actual applications, we may encounter problems with cross-domain requests. If the requested site is different from the domain name of the current page, the browser will prevent XMLHttpRequest from sending the request and return a "Cross-domain access is prohibited" error.
There are two main ways to solve cross-domain problems. One is to use JSONP technology. JSONP is a technical means of cross-domain access. It obtains data by dynamically adding a <script> tag. The other is to use CORS technology. CORS is the English abbreviation of cross-origin resource sharing, which allows resources to be accessed across specified domains on the requested server. </script>
2. Obtaining the visitor’s MAC address
Obtaining the visitor’s MAC address in JavaScript is more complicated than obtaining the IP address. Because obtaining the MAC address requires the use of Java or Flash plug-ins provided by the browser, they need to be authorized by the user to run.
Here, we introduce a method to obtain the MAC address based on Java Applet. Java Applet is a special type in Java that can run in a web browser and has certain system permissions.
First, create a Java Applet program on the server to obtain the MAC address. The following is a sample code:
import java.applet.Applet; import java.applet.AppletContext; import java.net.NetworkInterface; import java.util.Enumeration; public class MACAddress extends Applet { public void start() { try { Enumeration<networkinterface> interfaces = NetworkInterface.getNetworkInterfaces(); while (interfaces.hasMoreElements()) { NetworkInterface ni = interfaces.nextElement(); byte[] hardwareAddress = ni.getHardwareAddress(); if (hardwareAddress != null) { StringBuilder macAddress = new StringBuilder(""); for (byte b : hardwareAddress) { macAddress.append(String.format("%02X", b)); } String mac = macAddress.toString(); System.out.println(mac); // 将mac地址写入数据库 break; } } } catch (Exception e) { e.printStackTrace(); } } }</networkinterface>
In this code, we use the NetworkInterface class provided by Java to obtain the MAC address of the network card, and then convert the MAC address into a hexadecimal string and output it to the console . In practical applications, we can modify this code to write the MAC address into the database.
Then, add the Applet embedding code to the HTML page:
<object> <param> <param> <param> <param> <embed> </embed> </object>
In this code, we use the
3. Write to the database
After obtaining the browser’s IP address and MAC address, we need to write them to the database. Here we can achieve it with the help of Ajax technology.
The following is a sample code for writing an IP address:
var xhr = new XMLHttpRequest(); xhr.open('POST', '/writeip.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState === 4) { if (xhr.status === 200) { console.log('IP地址写入成功'); } else { console.error(xhr.statusText); } } }; xhr.send('ip=' + encodeURIComponent(ip));
In this code, we use XMLHttpRequest to send a POST request to the /writeip.php backend interface, and when the request is completed Then output the result.
We need to write a writeip.php file on the backend to process interface requests and write the IP address to the database. The following is a sample code:
<?php $ip = $_POST['ip']; // 连接数据库 $servername = "localhost"; $username = "username"; $password = "password"; $dbname = "dbname"; $conn = new mysqli($servername, $username, $password, $dbname); if ($conn->connect_error) { die("连接失败: " . $conn->connect_error); } // 插入数据 $stmt = $conn->prepare("INSERT INTO ip_info (ip) VALUES (?)"); $stmt->bind_param("s", $ip); $stmt->execute(); $stmt->close(); $conn->close(); ?>
This code uses mysqli to connect to the database and insert the IP address into the ip_info table.
The method of writing the MAC address is similar and will not be repeated here.
Summary
This article describes how to use JavaScript to obtain the viewer's IP address and MAC address and write them into the database. The method of obtaining the IP address is to send a request to the server and let the server return the browser's IP address; the method of obtaining the MAC address is to use the Java Applet program and embed the Java Applet code in the HTML page. We can then write them to the database using Ajax technology. In actual applications, we need to test and handle different browsers and operating systems to ensure the compatibility and reliability of the code.
The above is the detailed content of How to get the viewer's IP address and MAC address using JavaScript. For more information, please follow other related articles on the PHP Chinese website!

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

Article discusses connecting React components to Redux store using connect(), explaining mapStateToProps, mapDispatchToProps, and performance impacts.

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
