RE: [PHP-WIN] Warnings...

2002-04-11 Thread Daniel Reichenbach
The only reference i found is here: http://www.php.net/manual/en/function.ini-set.php But no description what it does :-( If i understood it right, you called a function like this myFunction(&$variable) You can do the following, which should work. I use it myself to pass references to database

RE: [PHP-WIN] Warnings...

2002-04-11 Thread Daniel Reichenbach
Try using: allow_call_time_pass_reference = On in your php.ini. This should turn the warning off. Daniel > -Original Message- > From: Martin.Andrew [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 11, 2002 3:35 PM > To: Php-Windows > Cc: Daniel Reichenbach > Sub

RE: [PHP-WIN] Warnings...

2002-04-11 Thread Daniel Reichenbach
As far as I understood allow_call_time_pass_reference can only be set via php.ini. So your ISP would have to do this for you. He could even do this for your domain(s) only. Daniel > thats the problem, my ISP has this set to OFF and I need to > know how I can change it locally. > > I used ini_s

RE: [PHP-WIN] HELP! Image manipulate over the WEB

2001-09-11 Thread Daniel Reichenbach
> Does anyone know how to rotate and zoom the image over the > WEB? Or any plugin can do this? Try using ImageMagick http://www.imagemagick.org/ Works out to be a good solution. Better than GD I'd say. Daniel -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PRO

RE: [PHP-WIN] HELP! Image manipulate over the WEB

2001-09-11 Thread Daniel Reichenbach
> Thanks. > But it seems that the imagemagic is more focus on the commandline > not the WEB. Yes, it is. But you can call it thru PHP's passthru command. This way is better if you have large numbers of images you want to process. Daniel -- PHP Windows Mailing List (http://www.php.net/) To un