Posted by milahu on 11/17/74 11:45
First of all, relying on register_globals=on is just soo bad; Please
use $_GET['varnam'] resp. $_POST['varnam'] for accessing script
parameters instead.
Concerning your problem: You can pass arrays via the GET method by
using array[index] as varname. Use array[] for auto increment of the
index. To print a value, use
<?php=$_GET['array']['index']?>
PS: Use $op++ instead of $po = $po + 1 :)
Navigation:
[Reply to this message]
|