RE: [PHP-DB] LAMP

2004-08-03 Thread Galbreath, Mark A
SuSE 9.1 Pro Mark -Original Message- From: Gavin Amm [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 8:40 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] LAMP I'd really like to find a Linux distro that is a LAMP system right out of the box. (Linux, Apache, MySQL, PHP) Are there any

[PHP-DB] PHP use in Federal Govt

2004-07-16 Thread Galbreath, Mark A
Alls, My division at State is trying to get PHP 5.0 approved for use by developers in the Department, and the Powers That Be are requesting evidence that other Federal agencies/military are using PHP, and the extent of it's use. Anybody have a clue about this? I sure would appreciate some help!

RE: [PHP-DB] PHP use in Federal Govt

2004-07-16 Thread Galbreath, Mark A
Thanks, David - I'm doing that at this moment :-) -Original Message- From: David Orlovich [mailto:[EMAIL PROTECTED] Sent: Friday, July 16, 2004 4:05 PM To: Galbreath, Mark A Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP-DB] PHP use in Federal Govt Mark, a Google search with .php .gov

RE: [PHP-DB] Printing selected characters (strcnt?)

2004-07-15 Thread Galbreath, Mark A
Isn't there a tokenizer method? Mark -Original Message- From: Vincent Jordan [mailto:[EMAIL PROTECTED] Sent: Thursday, July 15, 2004 5:31 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Printing selected characters (strcnt?) I am trying to figure out how to select the first letter of from

RE: [PHP-DB] Re: Posting Data to MySQL

2004-06-24 Thread Galbreath, Mark A
Doesn't matter how many fields are on a form; they are returned as an array of strings in the request object. Just iterate through the array and update the corresponding database fields. Mark -Original Message- From: Torsten Roehr [mailto:[EMAIL PROTECTED] Sent: Thursday, June 24, 2004

RE: [PHP-DB] ADOdb db abstraction library moving to sourceforge

2004-06-16 Thread Galbreath, Mark A
Thanks, John - I, for one, would be lost without ADODB. Mark -Original Message- From: John Lim [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 2:04 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] ADOdb db abstraction library moving to sourceforge Hello, ADOdb is a popular database

[PHP-DB] Security Issues

2004-05-10 Thread Galbreath, Mark A
Does anybody know if the security issues outlined in http://www.securereality.com.au/archives/studyinscarlet.txt are still salient or not? My boss wants a technical document outlining the security risks of using PHP in an attempt to get it approved for general use by Security. I just bought

RE: [PHP-DB] PHP Training

2004-04-30 Thread Galbreath, Mark A
Yeah...Zandstra, Teach Yourself PHP in 24 Hours, 3rd ed. (Sams 2004). ;-) -Original Message- From: Rafi Sheikh [mailto:[EMAIL PROTECTED] Sent: Thursday, April 29, 2004 11:50 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] PHP Training Any one know of a good training course for PHP (beg to

RE: [PHP-DB] New To PHP

2004-04-15 Thread Galbreath, Mark A
I found Lerdorf and Tatroe's Programming PHP (O'Reilly 2002) extremely helpful in understanding the why of PHP. Mark -Original Message- From: Tom Cloyes [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 7:54 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] New To PHP I ma trying to

RE: [PHP-DB] New To PHP

2004-04-15 Thread Galbreath, Mark A
Nice resource! Thanks for sharing! Mark -Original Message- From: Mikael Grön [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 9:00 AM To: Tom Cloyes; [EMAIL PROTECTED] Subject: Re: [PHP-DB] New To PHP What I did to learn PHP was to surf to http://www.hotscripts.com/ and look

RE: [PHP-DB] getting one line of info at a time

2004-04-12 Thread Galbreath, Mark A
Find out what the hex is for a carriage return and use strtok() to get an array of words, then use strlen to get the number of chars in each array element, and use array_pop() or array_shift(), iterating over the strlen, or test for NULL for each element in the array.. Mark -Original

RE: [PHP-DB] getting one line of info at a time

2004-04-12 Thread Galbreath, Mark A
( $array_elelment[ $i ], $j ); printf( $char ); } -Original Message- From: Galbreath, Mark A Sent: Monday, April 12, 2004 5:06 PM To: 'Hull, Douglas D'; 'Note To php mysql List (E-mail)' Subject: RE: [PHP-DB] getting one line of info at a time Find out what the hex

RE: [PHP-DB] Firebird

2004-03-31 Thread Galbreath, Mark A
I don't think sorumor has it IBM is buying MySQL. Mark -Original Message- From: Ignatius Reilly [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 6:38 AM To: DB list PHP; Alireza Balouch Subject: Re: [PHP-DB] Firebird _ - Original Message -

RE: [PHP-DB] Tree structure - how to show only current branch ??

2004-03-30 Thread Galbreath, Mark A
Already been done: http://www.destroydrop.com/javascripts/tree/ Mark -Original Message- From: -{ Rene Brehmer }- [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 30, 2004 7:50 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Tree structure - how to show only current branch ?? Ok, Tom Reed got

RE: [PHP-DB] exporting data to excel

2004-03-25 Thread Galbreath, Mark A
Do you set the content-type in the response header like in JSP and servlets? I've been reading the PHP Manual; where do you find stuff like this? Mark -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 9:02 PM To: matthew perry Cc: [EMAIL

RE: [PHP-DB] Re: exporting data to excel

2004-03-25 Thread Galbreath, Mark A
Good stuff to know! Thx, Geir! Mark -Original Message- From: Geir Pedersen - Activio AS [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 9:05 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Re: exporting data to excel Matthew, I am looking for the easiest way to export data to

RE: [PHP-DB] exporting data to excel

2004-03-25 Thread Galbreath, Mark A
way cool - thanks for the clues! Mark It's better to TEACH a man how to fish than to GIVE him a fish! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 25, 2004 7:46 AM take a look at the header function http://php.net/header an example...ymmv

RE: [PHP-DB] exporting data to excel

2004-03-25 Thread Galbreath, Mark A
To: Galbreath, Mark A Cc: '[EMAIL PROTECTED]' Subject: RE: [PHP-DB] exporting data to excel Do you set the content-type in the response header like in JSP and servlets? I've been reading the PHP Manual; where do you find stuff like this? take a look at the header function http://php.net

[PHP-DB] ?DHTML Layers with PHP?

2004-03-19 Thread Galbreath, Mark A
I've been sitting here all morning wracking my brains for a way to code a hierarchical menu tree with JavaScript from database data retrieved by PHP, so that the child menus appear on a mouse click. Can PHP do this without JS? The only JS examples I can find use static menu trees, not dynamic

RE: [PHP-DB] MySQL category tree db sorting

2004-03-19 Thread Galbreath, Mark A
Remember that this is my first script, but here's how I extracted and associated category hierarchies: include 'c:\apache2\adodb\adodb\adodb.inc.php'; $ADODB_CACHE_DIR = 'c:\apache2\adodb\adodb-cache'; $db = ADONewConnection( 'mysql' ); $db - Connect( 'localhost', 'root', 'mysql', 'reach');

RE: [PHP-DB] ?DHTML Layers with PHP?

2004-03-19 Thread Galbreath, Mark A
',''); document.write(d); -- I am not sure of a ready made php script that can do what you want, but I know it can be done. HTH - Paul -Original Message- From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 11:04 AM To: '[EMAIL PROTECTED]' Subject: [PHP-DB] ?DHTML Layers

RE: [PHP-DB] ?DHTML Layers with PHP?

2004-03-19 Thread Galbreath, Mark A
script is awesome. I work with Oracle Portal and a guy modified it to read portal hierarchies so I know it can read dynamic data with modification. http://www.destroydrop.com/javascripts/tree/ HTH - Paul -Original Message- From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] Sent: Friday, March

RE: [PHP-DB] An old dog, with a new trick..

2004-03-18 Thread Galbreath, Mark A
You bet! http://www.catb.org/~esr/faqs/smart-questions.html Mark -Original Message- From: Felipe Eduardo Ortiz López [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 11:06 PM To: lPHP and Databases; [EMAIL PROTECTED]; lPHP For Windows; lPHP Para Todos Subject: [PHP-DB] An old

RE: [PHP-DB] ODBC support

2004-03-12 Thread Galbreath, Mark A
This looks really great, Bob...thx! Mark -Original Message- From: Robert Twitty [mailto:[EMAIL PROTECTED] Sent: Friday, March 12, 2004 10:19 AM To: Galbreath, Mark A Cc: '[EMAIL PROTECTED]' Subject: Re: [PHP-DB] ODBC support Hi Mark An alternative solution for connecting to MS Access

[PHP-DB] ODBC support

2004-03-11 Thread Galbreath, Mark A
Yes, I'm a newbie to PHP, but I got a phpBB2 BBS online in a day and I'm psyched. My problem is, the PHP docs and API mention that ODBC is built into PHP 4.x but I can't figure out how to use it. I would like to access the M$ Access JET engine directly from a PHP page. Any clues? tia, Mark --