私はmysqlとphpに関しては初心者であり、これを正しく行うかどうかを尋ねたいだけです。
「lastTurn」が12時間以上のテーブルからSELECTしたい。これは正しい方法ですか。私は12時間のタイムスタンプに最も関心があります
$queryQuit = mysql_query("SELECT match_id, lastTurn FROM active_matches WHERE matchStatus=0 AND noticeSent < 2 AND lastTurn < NOW() - INTERVAL 12 HOUR");
Asihttprequestを使用してサーバーにデータを送信します。intを送信する場合、データベースに入力する前に変換する必要がありますか?
//score is an int $score = mysql_real_escape_string($_POST['score']); //Update a table where the field is an int "UPDATE hiscore SET score=score + '$score' WHERE username='$username'"
前もって感謝します