PHP Code: $link = mysqli_connect(“”,””,””,””);    if(!$link) {      die(‘Could not connect: ‘ . mysqli_error());   }     $statement = $link->prepare(“SELECT rooms FROM rooms WHERE id=(SELECT MAX(id) FROM rooms);”);     $statement->execute();     $statement->bind_result($bedCount);   $statement->fetch();    $statement->close();   $statement = $link->prepare(“SELECT start_date, end_date FROM rooms WHERE rooms = ?;”);    $statement->bind_param(‘i’, $bedCount);     $statement->execute();     $statement->bind_result($startDate,$endDate);   $dateList = array();   $i = 0;   while($statement->fetch()) {      $startDate = new DateTime($startDate);     $endDate = new DateTime($endDate);     while($startDate <= $endDate) {       $result[$i][] = $startDate->format(‘Y-m-d’);       $startDate->add(new DateInterval(‘P1D’));     }    $i++;       }    $statement->close();      //   //   // Build all the variables we intend on using   //   //   $mergedArray = array_reduce($result, “array_merge”, array());   $arrayCount = array_count_values($mergedArray);   switch($bedCount) {     case 1:       $brsoba = 1;       break; …

need to fix it the php code Read more »