RE: [PHP] Problem!

2001-01-29 Thread Brian V Bonini
$today = getdate(); $month = $today[month]; $mday = $today[mday]; $year = $today[year]; print "$month $mday, $year"; -Brian ** > -Original Message- > From: Fredrik Arild Takle [mailto:[EMAIL PROTECTED]] > Sent: Sunday, January 28, 2001 2:32 PM > To: [EMAIL PR

RE: [PHP] Problems with majodomo

2001-01-29 Thread Brian V Bonini
I missed the beginning of this thread, I've got a subscribe routine set up on a website for Majordomo, what are you trying to do? Bring me up to speed -Brian > -Original Message- > From: Alan Todd [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 29, 2001 10:33 AM > To: Phpg > Subje

RE: [PHP] Pricing for PHP programming???

2001-02-01 Thread Brian V Bonini
Isn't it illegal in the US to discuss rates in this manner? It's always been my understanding that The U.S. law specifically makes discussion of pricing between competitors (all or some) a federal offense. Am I taking this too literally? -- PHP General Mailing List (http://www.php.net/) To un

RE: [PHP] Pricing for PHP programming???

2001-02-01 Thread Brian V Bonini
ks, -Brian * > -Original Message- > From: Joe Stump [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 01, 2001 9:52 AM > To: Brian V Bonini > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] Pricing for PHP programming??? > > > You are taking this WAY to seriously. What y

[PHP] XML -> HTML via PHP

2001-02-05 Thread Brian V Bonini
Has anyone successfully used PHP to transform XML to HTML on the fly? Can you point me to some info/tutorials. -Brian *** -- 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 adm

RE: [PHP] include files

2001-02-05 Thread Brian V Bonini
DOCUMENT_ROOT ??? http://php.net/manual/en/language.variables.predefined.php > -Original Message- > From: David VanHorn [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 05, 2001 12:16 PM > To: [EMAIL PROTECTED] > Subject: [PHP] include files > > > I've got kind of a deep page structu

RE: [PHP] include files

2001-02-05 Thread Brian V Bonini
> -Original Message- > From: David VanHorn [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 05, 2001 1:04 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: RE: [PHP] include files > > > At 12:50 PM 2/5/01 -0500, Brian V Bonini wrote: > >DOCUME

RE: [PHP] XML Parsing with PHP

2001-02-05 Thread Brian V Bonini
You know, some of these guys are members of this list. I don't think they make any claims about being the definitive end all be all source for all things PHP but rather are a bunch of folks sharing their PHP experiences/knowledge. I'd say that's pretty generous of them. -Brian

RE: [PHP] Getting image size from gif/jpeg

2001-02-05 Thread Brian V Bonini
getimagesize (string filename [, array imageinfo]) http://php.net/manual/en/function.getimagesize.php > -Original Message- > From: r a n d y [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 05, 2001 2:55 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Getting image size from gif/jpeg >

RE: [PHP] include("blah.php?var=this"); doesn't work?!

2001-02-08 Thread Brian V Bonini
Adding ?asin=$asin doesn't make much sense but do it like this: include('book_reviews.php?asin=' . $asin); -Brian > -Original Message- > From: John Vanderbeck [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 08, 2001 12:27 PM > To: [EMAIL PROTECTED] > Subject: [PHP] in

RE: [PHP] Cookies

2001-02-09 Thread Brian V Bonini
lets see some code.. > -Original Message- > From: Matthew Bean [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 09, 2001 5:01 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Cookies > > > I am having major problems with cookies, it's been stressing me out for > over 9 hours. > > I have

[PHP] Newbie dummy questions..... error messages

2001-02-12 Thread Brian V Bonini
I get the following on one of my pages, Warning: Use of undefined constant month - assumed 'month' in /usr/local/etc/httpd/vhosts/eastcoastbicycles.com/htdocs/index.php on line 121 Warning: Use of undefined constant mday - assumed 'mday' in /usr/local/etc/httpd/vhosts/eastcoastbicycles.com/htdoc

RE: [PHP] imagecolorallocate / imagesetpixel / palette size?

2001-02-12 Thread Brian V Bonini
That's because it was originally designed for gif's. Gif's only have a 256 color palette.. > -Original Message- > From: Dan Harrington [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 12, 2001 12:30 PM > To: Matt McClanahan > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] imagecolorall

RE: [PHP] How to check if vaiable is defined or not?

2001-02-12 Thread Brian V Bonini
if (isset($var)) > -Original Message- > From: SED [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 12, 2001 6:22 PM > To: [EMAIL PROTECTED] > Subject: [PHP] How to check if vaiable is defined or not? > > > Hi, > > I'm sending a form, with check-boxes, via post to PHP-script and if the

[PHP] serialize/deserialize data

2001-02-12 Thread Brian V Bonini
What exactly does serialize/deserialize data mean? -- 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]

[PHP] ereg_replace

2001-02-13 Thread Brian V Bonini
I know you can replace A or B or C with D but can you replace A with B and C with D exclusively with one call to ereg_replace or does this need to be done seperately? -Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

RE: [PHP] ereg_replace

2001-02-14 Thread Brian V Bonini
That's exactly what I want to do Thanks! > -Original Message- > From: Robin Vickery [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 14, 2001 5:05 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] ereg_replace > > > >>>>> "&q

RE: [PHP] Help Work with files

2001-02-14 Thread Brian V Bonini
exec fclose feof fflush fgetc fgetcsv fgets fgetss file file_exists fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype > -Original Message- > From: Karl J. Stubsjoen [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 14, 2001 10:14 AM > To: PHP Mai

RE: [PHP] PHP scripts in HTML

2001-02-14 Thread Brian V Bonini
Don, Why don't you just rename your .html file to .php and use 'include' to call an external php script. -brian * > -Original Message- > From: Scott Mebberson [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 14, 2001 4:47 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] PHP

RE: [PHP] ereg_replace

2001-02-15 Thread Brian V Bonini
PROTECTED]] > Sent: Wednesday, February 14, 2001 5:05 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] ereg_replace > > > >>>>> ""VB" == "Brian V Bonini" <[EMAIL PROTECTED]> writes: > > > I know you can replace A or B or

RE: [PHP] ereg_replace

2001-02-15 Thread Brian V Bonini
Ah right, strings not words, I feel like a dummy now... ;-) > -Original Message- > From: John Vanderbeck [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 15, 2001 10:57 AM > To: [EMAIL PROTECTED]; Robin Vickery; [EMAIL PROTECTED] > Subject: Re: [PHP] ereg_replace > > > > why does t

RE: [PHP] ereg_replace

2001-02-15 Thread Brian V Bonini
bject: Re: [PHP] ereg_replace > > > >>>>> "VB" == "Brian V Bonini" <[EMAIL PROTECTED]> writes: > > > Ah right, strings not words, I feel like a dummy now... ;-) > > >> -Original Message- From: John Vanderbeck >

RE: [PHP] How to make text BOLD

2001-02-16 Thread Brian V Bonini
How about: li.bold {font-weight: bold;} The following Webpage is added or updated: DATE: Equipment: Topic: URL: or The following Webpage is added or updated: DATE: Equipment: Topic: URL: > -Original Message- > From: Nguyen, David M [mailto:[EMAIL PROTECTED]] > Sent: F

RE: [PHP] PHP Editors

2001-02-16 Thread Brian V Bonini
Are you using 4.5.2? It runs much smoother then 4.5.1a. Haven't had a single crash since upgrading, even with Photoshop, Illustrator, & HS all runnning at the same time. The FTP integration works much better too, no hang time while opening remote files. -Brian > -Original Message- > From

RE: [PHP] Sending multiple files through ftp in telnet.... PHP files that is

2001-02-16 Thread Brian V Bonini
Ummm, Turn off interactive prompting, make sure you in ASCII mode then, ftp>mput *.php -Brian ** > -Original Message- > From: Brandon Orther [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 16, 2001 11:58 AM > To: PHP User Group > Subject: [PHP] Sending multiple files through

RE: [PHP] Does anyone have experience to customize the phorum

2001-02-16 Thread Brian V Bonini
What do you want to do to it? > -Original Message- > From: Fang Li [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 16, 2001 12:26 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Does anyone have experience to customize the phorum > > > Hello All, > > Would anyone give me any advice to

[PHP] PHP Book Recommendations

2001-02-16 Thread Brian V Bonini
Can I get some recommendations on some good PHP books. Something broad but with good novice concepts -- 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:

RE: [PHP] Re: Creative solution with XML,PHP,MYSQL

2001-02-17 Thread Brian V Bonini
Maybe Flash is an option? > -Original Message- > From: Peter Skipworth [mailto:[EMAIL PROTECTED]] > Sent: Saturday, February 17, 2001 9:29 AM > To: Siim Einfeldt aka Itpunk > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]; > [EMAIL PROT

RE: [PHP] Fax manipulation?

2001-02-19 Thread Brian V Bonini
There are actually many ways to send an email to a fax gateway. So, you could generate an email, send it to a FAX gateway, ... and presto! -Brian * > -Original Message- > From: Joshua Long [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 19, 2001 9:26 AM > To: [EMAIL PROTE

RE: [PHP] redirect if sql = nothing

2001-02-20 Thread Brian V Bonini
$sql = "select * from table where bla bla bla"; if(!isset($sql)) { do this; } else { do this; } I think ? -Brian ** > -Original Message- > From: Matt Davis [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 20, 2001 11:33 AM > To: Php Mailing List > Su

RE: [PHP] file grabber help

2001-02-20 Thread Brian V Bonini
Is this what you mean? $fp = fopen("http://www.domain.com/file.xxx", "a+"); -Brian > -Original Message- > From: Brian C. Doyle [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 20, 2001 11:27 AM > To: [EMAIL PROTECTED] > Subject: [PHP] file grabber help > > > Hello all, > > I need to

RE: [PHP] Terrible Hosting Experience

2001-02-20 Thread Brian V Bonini
We host and provide servers to a good number of clients that have come over from Alabanza. All of them complaining of similar experiences I think that company has been plagued for a long time -Brian *** > -Original Message- > From: richard merit [mailto:[EMAIL PROTE

RE: [PHP] Terrible Hosting Experience

2001-02-20 Thread Brian V Bonini
Hmmm, last I heard they were using an OC-3 circuit, that's not too impressive. lots of those floating around. We've been running on an OC-48 for some time now > -Original Message- > From: Krznaric Michael [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 20, 2001 5:56 PM >

[PHP] XML/XSL parsing

2005-05-12 Thread Brian V Bonini (gfx-Design)
sing php? -- Brian V Bonini [EMAIL PROTECTED] GnuPG -> KeyID: 0x04A4F0DC | Key Server: pgp.mit.edu gpg --keyserver pgp.mit.edu --recv-keys 04A4F0DC _ gfx-Design http://www.gfx-design.com Key Info: http://www.gfx-design.com/keys [EMAIL PROTECTED] Pho

<    1   2   3   4