hello all,
I have form problem in wb. i cannot use the form module because it return null if form action's post so i made experiment with code module:
$mixed_output = <<< EOT
<form name="test" method="post" action="/pages/form.php">
<input type="text" name="test" /> <input type="submit" value="submit" name="submit" />
</form>
EOT;
echo $mixed_output;
echo (isset($_GET['POST']))?$_GET['POST']:'';
It return nothing if method "post" but return value if action with "get"
am really confused. How this is happen with my WB? How can i fix this?
Thank you for your time