RE: [PHP] Calling PHP script from C/C++?

2001-05-22 Thread Sean R. Bright
Yes it can. If you are compiling yourself you can use configure without specifying any webservers (i.e. Apache, Netscape, etc) and a binary called php will be generated after you build. -Original Message- From: Chatchawan Boonraksa [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22,

RE: [PHP] if $index=1 how can I create a variable named $column_1 by appending $index behind $columnname

2001-05-09 Thread Sean R. Bright
$toast = array(wheat, rye, pumpernickel); $numbreads = count($toast); for ($index = 0; $index $numbreads; $index++) { $temp = column$index; $$temp = $toasts[$index] } You will now have variables called column1, column2, and column3. Sean -Original Message- From: Jay

RE: [PHP] if $index=1 how can I create a variable named $column_1 by appending $index behind $columnname

2001-05-09 Thread Sean R. Bright
R. Bright [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 9:49 PM To: 'Jay Lepore'; [EMAIL PROTECTED] Subject: RE: [PHP] if $index=1 how can I create a variable named $column_1 by appending $index behind $columnname $toast = array(wheat, rye, pumpernickel); $numbreads = count

[PHP-CVS] RE: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / TODO-4.1.txt

2001-04-18 Thread Sean R. Bright
To continue a tangent... I don't like the idea of having the PEAR fetching/installation mechanism written in PHP (already some base code in PEAR to do this). It seems to me that it forces the user to download/build PHP and then download and rebuild PHP with any extensions that don't come in the

RE: [PHP-CVS] cvs: php4 / Makefile.in configure.in /main build-defs.h.in /pear PEAR.php.in /sapi Makefile.in /sapi/cgi config.m4

2001-04-08 Thread Sean R. Bright
After "cvs update -dAP": Making all in sapi gmake[1]: Entering directory `/home/kroot/php4/sapi' Making all in cgi gmake[2]: Entering directory `/home/kroot/php4/sapi/cgi' gmake[2]: *** No rule to make target `all'. Stop. gmake[2]: Leaving directory `/home/kroot/php4/sapi/cgi' gmake[1]: ***

RE: [PHP-CVS] cvs: php4 / Makefile.in configure.in /main build-defs.h.in /pear PEAR.php.in /sapi Makefile.in /sapi/cgi config.m4

2001-04-08 Thread Sean R. Bright
Sorry: ./configure --with-apxs=/usr/local/etc/httpd/bin/apxs --with-mysql -Original Message- From: Sean R. Bright [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 08, 2001 8:21 PM To: 'Stig Bakken'; [EMAIL PROTECTED] Subject: RE: [PHP-CVS] cvs: php4 / Makefile.in configure.in /main

RE: [PHP-CVS] cvs: php4 /ext/fdf fdf.c php_fdf.h

2001-04-06 Thread Sean R. Bright
Speaking of which. How do I enable this mysterious folding mode in emacs? I can't seem to find any documentation on it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 8:19 PM To: Jani Taskinen; [EMAIL PROTECTED] Subject: Re:

RE: [PHP-CVS] cvs: php4 /ext/fdf fdf.c php_fdf.h

2001-04-06 Thread Sean R. Bright
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 9:22 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-CVS] cvs: php4 /ext/fdf fdf.c php_fdf.h On Fri, Apr 06, 2001 at 08:55:40PM -0400, Sean R. Bright wrote: Speaking

RE: [PHP] populate select box with contents of a file?

2001-03-07 Thread Sean R. Bright
Take a look at dir() and readdir(). Those along with echo() should help you out. Sean -Original Message- From: Jerry Lake [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 7:40 PM To: Henrik Hansen; php general Subject: [PHP] populate select box with contents of a file?

[PHP] Poll: Oppinion on get_meta_tags

2001-03-06 Thread Sean R. Bright
Ladies/Gents: I recently fixed a long standing bug in get_meta_tags and have been asked by users to fix some other issues as well. I am curious to know how many of you are actually using this function and in what way. Currently, get_meta_tags returns an associative array, like this:

RE: [PHP-CVS] cvs: php4 /ext/midgard .cvsignore ChangeLog INSTALL Makefile.in access.c article.c attachment.c calendar.c config.m4 element.c event.c eventmember.c file.c fudge genentry.pl group.c host.c image.c mail.c member.c mgd_access.h mgd_article.

2001-02-12 Thread Sean R. Bright
This is distributed as GNU and the GNU license is splattered throughout, is that a problem as we have seen with readline? Sean -Original Message- From: emile [mailto:emile]On Behalf Of Emiliano Sent: Monday, February 12, 2001 1:42 PM To: Sterling Hughes Cc: [EMAIL PROTECTED]

RE: [PHP-CVS] cvs: php4 /ext/standard file.c file.h

2001-02-11 Thread Sean R. Bright
Well, I was trying to fix one bug, not introduce others. If you read the documentation for get_meta_tags you will see that it returns an associative array that is keyed by the value of the NAME attribute while the value is the data within the CONTENT attribute. If other members of the