[PHP-WIN] unlink?

2003-03-01 Thread Paul Dymecki
Hello, I was wondering if anyone knows how to delete a file from the filesystem? I've been trying unlink but it doesn't seem to be working as expected. Do spaces in the file path have to be compensated for or something? thx for any help, Paul ___

Re: [PHP-WIN] PHP Scripts can't write to files

2003-02-16 Thread Paul Dymecki
How are you writing to the filesystem? Paul From: "Greg" <[EMAIL PROTECTED]> Reply-To: "Greg" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] PHP Scripts can't write to files Date: Sun, 16 Feb 2003 10:58:33 -0600 All of the files/folders had read/write permissions for Everyone,

[PHP-WIN] Re:Subject: Need Help with Classes

2003-02-13 Thread Paul Dymecki
Ya i actually got it working yesterday thanks to Matt who sent me some sample class code to execute. I put it in a seperate file and it worked fine. So thin i put the class i was trying to call in a seperate class as well and that did it. ie., the problem(besides all the ones you mentioned) w

[PHP-WIN] Need Help with Classes

2003-02-12 Thread Paul Dymecki
finally i try and acces myVar from outside the class: $x = ($someVar->$myVar["u"]); $y = ($someVar->$myVar["v"]); Nada, rien, nicht, no dice... Any help would be appreciated, Paul From: "Matt Hillebrand" <[EMAIL PROTECTED]> To: "'Paul Dymecki&#

Re: [PHP-WIN] general question on Globals

2003-02-12 Thread Paul Dymecki
($lccXY == 0) { pj_free($pj); return FALSE; } else { pj_free($pj); return TRUE; } } thx, Paul From: Dash McElroy <[EMAIL PROTECTED]> To: Paul Dymecki <[EMAIL PROTECTED]> Subject: Re: [PHP-WIN] general question on Globals Date: Wed, 12 Feb 2003 14:07:01 -0800 (PST) Do you have an exampl

Re: [PHP-WIN] general question on Globals

2003-02-12 Thread Paul Dymecki
s and getting one return value. I know how to declare classes(i've been working in java for the past few years) but i don't get php's calling structure. Any help would be appreciated. thx, Paul From: Dash McElroy <[EMAIL PROTECTED]> To: Paul Dymecki <[EMAIL PROTECTE

[PHP-WIN] general question on Globals

2003-02-12 Thread Paul Dymecki
I have a general question on Global vars. If you declare a Global variable within a function in a program called x.php. Do you have access to this variable in another program say y.php that has include_once("x.php")? thx, Pa