<?php
header('content-type: text/html; charset=utf-8');

echo '您想要學習的是：<br />';

//使用迴圈取得 $_GET['learning'] 陣列內的資料
foreach( $_GET['learning'] as $learning ){
  echo "$learning ";
}

?>
