RE: [PHP] php as cron

2001-06-21 Thread Galvin, Max
Either recompile PHP as a cgi OR use lynx to do it so: lynx -dump http://www.mysite.com/myscript.php You can then collect the output in the usual ways. M > -- > From: AJDIN BRANDIC[SMTP:[EMAIL PROTECTED]] > Sent: 21 June 2001 09:07 > To: [EMAIL PROTECTED] > Subject:

Re: [PHP] Forms and PHP_SELF

2001-05-10 Thread Max Vysotskiy
""Chad Guilette"" <[EMAIL PROTECTED]> wrote in message 000701c0d962$d28fb670$0100a8c0@optimus">news:000701c0d962$d28fb670$0100a8c0@optimus... > I'm currently working on a project and I've come across a problem which I'm > sure has been discussed several times before but I still need some > assist

[PHP] multiselects and arrays

2001-05-10 Thread Max Vysotskiy
Hi. Why doesn't PHP convert mutiselect values with plain names (not array-like) to arrays. Is there any reason to not doing this? Example: I have a page with multiselect, which name is SEL1 (I cannot use square brackets because I need to use a JavaScript on the page, so, it's not allowed in varia

Re: [PHP] ASP 2 PHP

2001-05-09 Thread Max Pyziur
ased - http://asp2php.naken.cc/ is the link. > Also it is using a MSSQL database if that helps at all. > > Thanks > Brandon > Max Pyziur BRAMA - Gateway Ukraine [EMAIL PROTECTED] http://www.brama.com/ --

RE: [PHP] .doc to .txt

2001-03-26 Thread Max Pyziur
ility which I find very helpful - 'catdoc'. It's homepage is: http://www.ice.ru/~vitus/catdoc/ > hope that helps > > regards > > Ankur verma > HCL Technologies > Noida > India Max Pyziur BRAMA - Gateway Ukraine [EMAIL PROTECT

Re[2]: [PHP] Mixing PHP code with phplib templates... possible?

2001-02-07 Thread Max A. Derkachev
Hello derek, Tuesday, February 06, 2001, 7:58:25 PM, you wrote: df> Hi Max, df> Thanks for the reply. Unfortunately, the solution you suggest means df> that I would have to do a set_var on all hyperlinks (i.e., define all df> hyperlinks everywhere on the site), which is a hu

Re: [PHP] Mixing PHP code with phplib templates... possible?

2001-02-06 Thread Max A. Derkachev
ript. I figure this must df> be possible, but I'm new at using phplib, so I'm not all that clear df> on it... Set the links as template variables and then substitute them with values using Template's set_var(). -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] S

Re: [PHP] Function by reference?

2001-01-31 Thread Max A. Derkachev
lines NS> $func=&urlencode; It won't work. You can not reference a function. But you can call a variable with the function name value. $func = 'urlencode' $func($str) here will do the same as urlencode($str). -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Sy

Re[2]: [PHP] session question

2001-01-31 Thread Max A. Derkachev
sion_register($funky_session_var) gives your nothing (if not an error). You should session_register('funky_session_var') instead (the NAME of the variable, not the variable itself). -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812)

Re: [PHP] Post without submit?

2001-01-26 Thread Max A. Derkachev
Hello Chris, Friday, January 26, 2001, 8:23:27 AM, you wrote: C> is there anyway to post without clicking a submit button? You can, e.g. using javascript event. on="document.forms['formname'].submit()" -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Sym

Re[2]: [PHP] is it possible to communicate javascript and php?

2001-01-22 Thread Max A. Derkachev
learned mind reading yet :) -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Russia   -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re[2]: [PHP] RE: Ethics question...

2001-01-19 Thread Max A. Derkachev
ething like killall -1 httpd to restore normal operations. -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Russia   -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAI

Re[4]: [PHP] declaring variables in class definitions

2001-01-11 Thread Max A. Derkachev
ndard. Moreover, it's a common sense. Try to imagine what will say other developer which may use or maintain your code looking at this mess. -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Rus

Re[2]: [PHP] declaring variables in class definitions

2001-01-10 Thread Max A. Derkachev
oes not appear to be true. With error reporting set to max, and the sic> variables not defined in the class ( $somevar,$somevar2 and $somevar3 ), sic> the following will echo out: sic> Not set sic> empty sic> value of somevar2 sic> value of somevar3 sic> class a { sic&

Re: [PHP] declaring variables in class definitions

2001-01-10 Thread Max A. Derkachev
; it would throw an error saying that you have no variable named 'somevar' in you class. -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 http://www.Books.Ru -- All Books of Russia   -- PHP General Mailing List (http://

<    1   2