iモードIDの取得

<form action="test.php?guid=ON" method="post">

<form action="test.php" method="get">
<input type="hidden" name="guid" value="on">

post時は hiddenは不可
get時は、actionは不可
SSLページでは不可


PHPで取得は

$_SERVER['HTTP_X_DCMGUID']

utnのように a や form でなくてもいいので

header('Location: http://www.example.com/?guid=on')

とか便利かも