On Dec 6, 2005, at 12:18 PM, Sjon wrote:
It probably works if you do the following:
$_POST['_user'] = 'username'; $_POST['_pass'] = 'password'; $_POST['_action'] = 'login'; require 'roundcubemail/index.php';
This is very ugly though, overwritting superglobal values; but it
works ;)What's with the underscore before each variabel by the way?
Personal preference of Thomas probably, but is it really a good
idea to do so? :)
That's what the array containing all POST variables is called in
php. It's not a personal preference, it's The Way Things Are.
--david