-2
とデートする方法現在の日付用のMySQLデータベースからデータを選択し、tommorrowsは、日付のtommorrowsは、私が唯一、その後、私は現在の日付のデータベースからデータを選択するデータベースを持っている
$query = mysql_query("SELECT PatientMaster.PatientFirstName,PatientMaster.PatientLastName,PatientMaster.PatientID,ProviderAppointmentListings.ProviderNPI,ProviderAppointmentListings.AppointmentTime,ProviderAppointmentListings.AppointmentListingsID, '' FROM PatientMaster JOIN ProviderAppointmentListings ON PatientMaster.PatientID = ProviderAppointmentListings.PatientId LIMIT 0, 30");
$rows = array();
while($row = mysql_fetch_assoc($query)) {
$rows[] = $row;
}
echo json_encode($rows);
あなたがここで求めていることはまったく明確ではありません。質問をより明確に述べてください。 – McGarnagle
現在の日付と明日の日付を意味しますか? – selo
は1つのquerryを意味します。現在の日付を希望し、他のものはtommorrows dateを希望します。 –