[PHP] Re: how can this be? GET instead of POST - db error

2002-07-13 Thread Dyon Beaart
I dont know what causus it, but I have a kind of a solution for your problem... you probably have something like $_GET[myvar] in your query, try to do something like this : $_VARS=_$REQUEST_METHOD; $_VARS=$$_VARS; And then instead of using the _GET, you use the _VARS... Andy [EMAIL PROTECTED]

[PHP] Re: Can not delete files that were uploaded

2002-07-12 Thread Dyon Beaart
You can try to 'chmod' it first : @chmod ($myfile, 0777); and then do an exec or passthru.. exec(rm -f $myfile); Note the '@', if the chmod fails, he doesn't show it... Good luck Dyon Anan [EMAIL PROTECTED] schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, I use PHP