私はPHPを初めて使いこなしており、ユーザーインターフェイス上で作業しています。 これは、ワット数とブレーカのステータス(ON/OFF)がデータベースに送信されるパーソナルサーキットブレーカプロジェクトです。PHP/AJAX:ボタンクラスを管理するための自動MySQLクエリ
私が今試みているのは、インターフェイスのライブステータスボタンを作ることです。基本的には、ボタンクラス/背景色をデータベースのステータス行に応じて変更します。 (Status = 0→Redステータスボタン、Status = 1→Greenステータスボタン)。
私が助けが必要なのは、2〜3秒ごとにステータス値のデータベースの自動クエリーです。私はmysql/phpを使って読みたい値を問い合わせる方法と、Javascript関数を使ってボタンクラス/背景色を切り替える方法を知っています。
私はAJAXを自動化プロセスに使用しますか?私のアプローチに関する
<!DOCTYPE html>
<html>
<head>
<script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$(this).toggleClass("off");
});
});
</script>
<style>
div{
float: left;
color:#fff;
font-size:40px;
}
h2{
text-align: center;
}
.wrapper{
position: absolute;
top: 25%;
left: 10%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
.one{
width: 125px;
height:100px;
}
.two{
width: 120px;
height:75px;
background:darkblue;
}
.three{
width:120px;
height:75px;
background:blue;
}
.button{
background-color: #4CAF50; /* Green */
border: 1px solid green;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
float: left;
position: relative;
left: 15%;
}
.button2{
background-color: #4CAF50; /* Green */
border: 1px solid green;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
float: left;
position: relative;
left: 15%;
}
.off {
background: red;
}
.button:hover {
background-color: #3e8e41;
}
.button2:hover {
background-color: #3e8e41;
}
</head>
</style>
<?php
$query ="SELECT status FROM ICBP.radio3 ORDER BY time DESC LIMIT 1;";
$result = mysql_query($query);
$status = mysql_fetch_row($result);
if($status = 0){
echo "off";
}
else if ($status = 1) {
echo "on";
}
?>
<body>
<h2>ICBP Dashboard</h2>
<div class="wrapper">
<div class="one">
<div class="two">
<a href="index3.php"><button class="button">Breaker 1</button></a>
<button class="button2">Status</button>
</div>
<div class="three">
<a href="index3.php"><button class="button">Breaker 2</button></a>
<button class="button2">Status</button>
</div>
</div>
<div class="one">
<div class="two">
<a href="index3.php"><button class="button">Breaker 3</button></a>
<button class="<?php echo $status ?>">Status</button>
</div>
<div class="three">
<a href="index3.php"><button class="button">Breaker 4</button></a>
</div>
</div>
</div>
</body>
</html>
どれ指導が非常に高く評価されています。ここでは、最新のソースであるJSFIDDLE
:ここ
は、私が一緒に遊んでいますモジュールです。ありがとうございました!
だから、全体のプロセスは次のようなものになるだろう:AJAX要求 - > php query - >条件に基づいた出力文字列。私はHTMLの本体でPHPスクリプトを呼び出す正しい軌道にいるかどうかを明確にしますか?ありがとうございました。 – giri
@giri私の編集した回答を確認してください - これはアプリ全体の骨組みです。あなたが今行う必要があるのは、PHPスクリプトに必要なロジックを貼り付けることです。 –