Can you fix my code?  I am still having 1 senators as it should be 2 because there are 2 senator position on the array. I think its the loop I am wrong thank you 'Allan', 'position' => 'President'],     ['name' => 'Rhea', 'position' => 'Vice President'],     ['name' => 'Jane', 'position' => 'Senator'],     ['name' => 'Jfafa', 'position' => 'Senator'],   ];     $counterPresident = 0;   $counterVicePresident = 0;   $counterSenator = 0;     switch($candidates as $p)   {       case "1" ($p['position'] == "President")       {           ++$counterPresident;       }       else if($p['position'] == "Vice President")       {           ++$counterVicePresident;       }       else if($p['position'] == "Senator")       {           ++$counterSenator;       }   }     echo "Presidents: ". $counterPresident ." candidates";   echo "";   echo "Vice President: ". $counterVicePresident ." candidates";   echo "";   echo "Senator: ". $counterVicePresident ." candidates"; ?>

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 9RQ
icon
Related questions
Question

Can you fix my code? 

I am still having 1 senators as it should be 2 because there are 2 senator position on the array. I think its the loop I am wrong thank you

<body>
<?php
  $candidates = [
    ['name' => 'Allan', 'position' => 'President'],
    ['name' => 'Rhea', 'position' => 'Vice President'],
    ['name' => 'Jane', 'position' => 'Senator'],
    ['name' => 'Jfafa', 'position' => 'Senator'],
  ];
 
  $counterPresident = 0;
  $counterVicePresident = 0;
  $counterSenator = 0;
 
  switch($candidates as $p)
  {
      case "1" ($p['position'] == "President")
      {
          ++$counterPresident;
      }
      else if($p['position'] == "Vice President")
      {
          ++$counterVicePresident;
      }
      else if($p['position'] == "Senator")
      {
          ++$counterSenator;
      }
  }
 
  echo "Presidents: ". $counterPresident ." candidates";
  echo "<br>";
  echo "Vice President: ". $counterVicePresident ." candidates";
  echo "<br>";
  echo "Senator: ". $counterVicePresident ." candidates";
?>
</body>
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT