Aver si me podeis ayudar.
El problemma esta en que al enviar el formulario la informacion no se pasa a las variables $POST['nombredecampo'] . He intentado hacer lo mediante GET y la informacion si aparece en la barra de URL pero tampoco se pasa a $GET['xxxx']. He probado hacer $_REQUEST['xxxx'], he probado poner register_global on pero todo sin resultado alguno.
En mi opinion es algo de configuracio de apache o php, pero el que???
Uso FC5 como SO.
Edited:
Aqui dejo esl script por is acaso, pero estoy convencido de que no tiene errores: (sin espacios en < input .... > si no, no se ven.).
#!/usr/bin/php
<?echo "Content-Type: text/html;charset=ISO-8859-1\n\n";
?>
<HTML>
< BODY >
<?php
echo $method;
echo $POST['topic']; # Nothing is printed out
echo $REQUEST["user"]; # Nothing is printed out
echo $user;
import_request_variables();
?>
HELLO
<FORM ACTION="forum.php" METHOD="POST">
Topic name: < input type="text" name="topic" value="TOPIC" ><br>
User Name: < input type="text" name="user" value="user_name" >
<br><br>
Your msg here:
< Textarea name="msg" Rows=20 cols=60></Textarea >
<br> < input type=submit name=submit value=OK >
</form>
<?php
echo $POST['topic']; #Nothing is printed out
echo $POST['user']; #Nothing is printed out
?>
</BODY>
</HTML>