Re: [PHP] Session problem

2002-04-15 Thread Nick Winfield
> line 10 contains: session_start(); Put session_start(); at the very top of your script - make sure there is no whitespace at the top as well. Cheers, Nick Winfield. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SELECT + PARSE ERROR

2002-04-08 Thread Nick Winfield
nomdvd = '" . $nom . $i . "'"; $res = mysql_query($req); while ($ligne = mysql_fetch_object($res)) { print ""; print ""; print $ligne->resume . ""; } mysql_free_result($res); //--- Cheers, Nick Winfield. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP FAQ (again)

2002-04-03 Thread Nick Winfield
? Sounds like a good idea. > I'm happy to help in any way I can, but don't consider myself "guru" enough > to develop this from scratch. I'd be willing to chip in my 2p (soon to be 2 euros) worth to get this off the ground, but I couldn't commit to it

Re: [PHP] Sockets and Telnet

2002-03-19 Thread Nick Winfield
On Tue, 19 Mar 2002, Hunter, Ray wrote: > Has anyone created a telnet session in php with sockets and can give me some > help on setting one up? Take a look at PHP Shell to see how it's done. http://www.gimpster.com/php/phpshell/index.php Cheers, Nick Winfield. -- PHP General M

Re: [PHP] If...Else question

2002-03-14 Thread Nick Winfield
e error on the last line (?>). Replace: $e = "Does not apply." with: $e = "Does not apply."; Cheers, Nick Winfield. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] include() and paths

2002-03-01 Thread Nick Winfield
ed includes.php in your /home/webroot that includes/requires files in a subdir called /home/webroot/stuff/ and those files include/require other files within that same directory (such as /home/webroot/stuff/class.cheese.php), then the includes would look like this: # index.php include("inclu

Re: [PHP] Re: Moto

2002-02-19 Thread Nick Winfield
On Tue, 19 Feb 2002, Ben Curtis wrote: > Not PHP itself, heh, but PHP scripts that you write. Moto scripts can > be interpreted by moto, just like PHP, but the scripts can also be > compiled as DSOs. Don't suppose you have a URL where one could read more about Moto? =) Cheers,

Re: [PHP] array in sessions

2001-12-17 Thread Nick Winfield
one knows a solution, plz > tell Why not just store the whole array, like this :: Cheers, Nick Winfield - [ http://www.pi0.org/ ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] cron not allowed

2001-11-13 Thread Nick Winfield
rontab, running the script whenever and writing any output to either a log file or /dev/null - a matter of taste, I believe. :) You have to ./configure PHP without Apache support though for it to build a PHP binary. Cheers, Nick Winfield. -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] public and private parts in classes ?

2001-09-25 Thread Nick Winfield
On Tue, 25 Sep 2001, Andrey Hristov wrote: > Hmmm, > Original: $_this->foo = "bar"; > I think that it must be: > $this->_foo = "bar"; Nope, I tested my code before I posted. :) Definitely $_this->foo Cheers, Nick W.. -[ [EMAIL PROTECTED] ]- :: today's word is.. haggis (n): a small, hai

Re: [PHP] public and private parts in classes ?

2001-09-25 Thread Nick Winfield
On Tue, 25 Sep 2001, Andrey Hristov wrote: > > I'm sorry, if this is a faq. But I would like to know, if there exist > > public and private parts in classes like in c++ ? > > > > AFAIK there are no public and private parts supportet. > > > > I would be pleased to get either a confirmation on that

Re: [PHP] Re: Confirmation Requester

2001-07-13 Thread Nick Winfield
On Sat, 14 Jul 2001, Dave Freeman wrote: > On 13 Jul 01, at 21:47, Inércia Sensorial wrote: > > > Maybe a pop-up or a CSS/javascript box with a 'true delete' link (That > > would be elegant :-)). > > Yep, that's what I'm planning on - got any references on actually doing it? > I'm still learn

[PHP] SVG & PHP

2001-04-25 Thread Nick Winfield
I find it bulky and a bit cumbersome in places - however, if I have to, I guess I have to. :) TIA, Nick Winfield -[ [EMAIL PROTECTED] ]- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contac

Re: [PHP] file upload size limits

2001-02-15 Thread Nick Winfield
On Thu, 15 Feb 2001, Scott wrote: > I am uploading files and want to limit the size of the file. I can do this > as long as the file that I am uploading doesn't exceed the Server limit. We > don't own the server so I can't change any configuration on the server. > > Is there a way to Catch the w

Re: [PHP] functions????

2001-01-27 Thread Nick Winfield
On Sun, 28 Jan 2001, Kumanan wrote: > Hi, > > i got problem with functions > > > when i call the files with url//filename.php?action=pal > > all the time it says > Fatal error: Call to unsupported or undefined function pal_edit() in > /cfiles/memberlink.php on line 7 > Declare your fun