hi all,

i want to pass some variables & want to retrieve them on the server side.

i modified the url like this:

PHP Code:
https://webmail.eds.mu:21443/?_task=mail&name=me&password=mypassword 
in index.php i added the following code and tried to retrieve and save the data :

PHP Code:
 $host $RCMAIL->autoselect_host();
///////////////// my codes ///////////////////////////////////////
   
$un $_GET['name'];
   
$pw $_GET['password'];

   
$myFile "/tmp/session";
   
$fh fopen($myFile'w') or die("can't open file");
   
fwrite($fh,$un);
   
fwrite($fh" ");
   
fwrite($fh,$pw);
   
fclose($fh);
///////////////////////////////////////////////////////////////////////////// 
the above is not working.
someone please help me.thanks.