[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, every

[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)

[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, Paul Dymecki

Re: [PHP-WIN] general question on Globals

2003-02-12 Thread Paul Dymecki
. 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 PROTECTED] Subject: Re: [PHP-WIN] general question on Globals Date

Re: [PHP-WIN] general question on Globals

2003-02-12 Thread Paul Dymecki
; $parms2[6] = lat_2= 77.0; $parms2[7] = units=m; $projLCC = pj_init($parms2); $lccXY = pj_transform($projLonLat, $projLCC, $dlon, $dlat,0 ); if ($lccXY == 0) { pj_free($pj); return FALSE; } else { pj_free($pj); return TRUE; } } thx, Paul From: Dash McElroy [EMAIL PROTECTED] To: Paul Dymecki

[PHP-WIN] Need Help with Classes

2003-02-12 Thread Paul Dymecki
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' [EMAIL PROTECTED] Subject: OOP in PHP Date: Wed, 12 Feb 2003 16:50:12 -0600 I like OOP as well. I'm a big