-
Notifications
You must be signed in to change notification settings - Fork 44
/
show_detail.php
29 lines (28 loc) · 1.07 KB
/
show_detail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
$subject = "This is my UDID from iOS device";
$body = "Hello<br /> This is my UDID: {$_GET['UDID']} <br />";
$body .= "Device product: {$_GET['DEVICE_PRODUCT']} <br />";
$body .= "Device version: {$_GET['DEVICE_VERSION']} <br />";
$body .= "Device name: {$_GET['DEVICE_NAME']} <br />";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UDID</title>
<meta name="viewport" content="width=device-width" />
</head>
<body>
<div>
<h1>Knowing the UDID of my iOS device</h1>
<p>UDID: <?php echo $_GET['UDID']; ?></p>
<p>Device product: <?php echo $_GET['DEVICE_PRODUCT']; ?></p>
<p>Device version: <?php echo $_GET['DEVICE_VERSION']; ?></p>
<p>Device name: <?php echo $_GET['DEVICE_NAME']; ?></p>
<p>Step 2: Send the information by email:</p>
<p>
<a href="mailto:?subject=<?php echo $subject ?>&body=<?php echo $body?>">Give me tap</a>
</p>
</div>
</body>
</html>