Functions Php

  
  $scores = array(88, 75);
  @list($maths, $english, $history) = $scores;
  @printf("

Maths: %d; English: %d; History: %d; Biology: %d.

\n",$maths, $english, $history, $biology);
?>