Re: [PHP] controlling winamp with COM

2003-07-22 Thread Jon Haworth
Hi, > It might even be possible that Winamp itself provides > hooks to a running instance of itself via command line > parameters (one can hope) which would simplify the > task greatly. Winamp (v2 at any rate, I haven't worked with v3) has a great API, including hooks via the command line, which

[PHP] Re: Warnings when trying to write to file

2003-07-22 Thread Ivo Fokkema
My guess would be you don't have any write permission. Your first error is a permission denied using fopen(). The rest of your errors is caused by using the invalid filepointer '$file'. So check if you have any write permission! I don't have any on my commercial hosting either, but I do on my local

Re: [PHP] Warnings when trying to write to file

2003-07-22 Thread Curt Zirzow
Please Start a new email when starting a new topic. * Thus wrote Dore van Hoorn ([EMAIL PROTECTED]): > > Warning: fopen(respons.txt) [function.fopen]: failed to create stream: Permission > denied in /usr/local/slash/apache/vhosts/goldore.nl/httpdocs/enquete/bekijken.php > on line 206 > My bet

[PHP] Warnings when trying to write to file

2003-07-22 Thread Dore van Hoorn
Hi, I get this warning when trying to write to a .txt file. Strange enough, I don't get this error when trying to do the same this on my local server. Can anybody help me with this?! Warning: fopen(respons.txt) [function.fopen]: failed to create stream: Permission denied in /usr/local/slash/apac

Re: [PHP] Re: need help with MySQL full text searching!!!!

2003-07-22 Thread Angelo Zanetti
Hi James so what you are saying is that if I am not running mysql 4.0.10-gamma then the full text search wont work. Strange because if I run the full text search on both full text indexed fields I get the correct resultset, however I only want to do a full text search on a column at a time, let me

Re: [PHP] Array cookie

2003-07-22 Thread Jacob Vennervald Madsen
You could serialize your an array and save it in the cookie, but I would also recommend using a session and then save the serialized array in this instead. Jacob Vennervald On Tue, 2003-07-22 at 09:36, Curt Zirzow wrote: > * Thus wrote Shantanu Oak ([EMAIL PROTECTED]): > > Hi, > > I have written

Re: [PHP] Array cookie

2003-07-22 Thread Curt Zirzow
* Thus wrote Shantanu Oak ([EMAIL PROTECTED]): > Hi, > I have written a feed reader for my personal use. The > php code given below does work. But it works only with > a single feed. How can I save multiple cookies > (array?) and display a few more RSS feeds. The example > page can be found at...

Re: [PHP] Re: Help?

2003-07-22 Thread Ivo Fokkema
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Ivo Fokkema ([EMAIL PROTECTED]): > > I want to warn you though, PHP depricates the use of register_globals = On, > > so it would be recommendable to use your modified script and keep coding > > using $_POST, $_

RE: [PHP] can't restart session

2003-07-22 Thread Adrian Portsmouth
Chris, As I said, you are not calling your session user_info, the only way to name a session is to use session_name() BEFORE session_start() if you are not using a session_name call then change your setcookie call to the following and this should kill it for you: setcookie(session_name(),"","","/

<    1   2   3