◀︎


button_like_0.html

<style>
body{justify-content:center;
max-width:400px;
align-items:center;
margin:8px auto;
font-family:Arial,sans-serif;}
</style>

<input type="button"value="いいね"onclick="ぼたん()">
<div id="目印"></div>

<script>
function ぼたん()
{let それは=new XMLHttpRequest();
それは.open("POST","button_like_0.php",true);
それは.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
それは.onreadystatechange=function()
{if(それは.readyState===4 && それは.status===200)
{document.getElementById("目印").innerHTML=それは.responseText;}};
それは.send();}
</script>

button_like_0.php


<?php
if($_SERVER["REQUEST_METHOD"]==="POST")
{$ipAddress=$_SERVER['REMOTE_ADDR'];
$currentDateTime=date("Y-m-d H:i:s");
$to="aaa@aaa.aaa";
$subject="イイネ・ボタンがクリック";
$message="イイネ・ボタン0 がクリックされました\nIPアドレス: $ipAddress\n日時: $currentDateTime";
$headers="From:bbb@bbb.bbb";
mail($to,$subject,$message,$headers);
echo '<p style="color:#00abcd;font-size:30px;">イイネ!</p>';}
?>

▼ button_like_0.zip ▼