My PHP Question-Of-Life :
I\'m trying to call a PHP-script with two variables (and now you might be thinking \"Uh ohh, newbie ahead!\") but I do know how to use more that one var in an URL, but here goes ...
An OBJECT-tag has a PHP-script as it\'s source like this :
<object type=\'application/x-oleobject\'>
<param name=\'filename\' value=\'load.php?sid=123abc&dbid=4711>
...
(This object is actually going to show a movie, but has been cut to make it more readable!)
...
</embed>
</object>
The load.php script READFILE (and returns it as it\'s output). But it doesn\'t work!?!? If I only pass ONE var to the load.php-script it works perfectly, but I really NEED both vars! I have solved the problem by concatenating all varabiables and split them \"on-the-other-side\"
My question : What am I doing wrong???