如何将数组作为链接参数传递
当前页面获得一个数组,是checkbox控件传的数组,在翻页链接上要将参数提交给本页面,包括checkbox控件传的数组
a.php
<td>
<input type="checkbox" name="education[]" value="1" >小学
<input type="checkbox" name="education[]" value="2">中学
<input type="checkbox" name="education[]" value="3">高中/中专
<input type="checkbox" name="education[]" value="4">大专/大学
<input type="checkbox" name="education[]" value="5">硕士以上
</td>
提交到b.php
$education将是个数组
翻页链接中
echo "<a class=news href='customer_visit_report.php?education=$education'>";
echo "<img src='images/icon1.gif' border=0 alt=上一页>";
echo "</a>";
数组将无法传递
能有什么解决办法吗?