I have a very starnge problem
I took phpMyAdmin, and added a login script with sessions, this way, I would be able to assign each user his own mysql server login details, without them knowing what it really is. My problem is, on my test server this works perfectly fine, but on my host's server I simply get internal server error.
I have another site, on the same server, that uses sesssions to login without a problem.
I created a test.php file with the following:
<?
session_start();
session_register('size');
$_SESSION['size'] = 'beeg';
print $_SESSION[size];
phpinfo();
?>
sessions does work on that host, like I said, my other site works without a problem.
On my local machine, it prints fine, yet on the server it doesn't
I don't have access to the logs files, so I can't see what it does. Can anyone please help me with this?