[PHP] Re: bulk emailer

2005-03-14 Thread Redmond Militante
l Lemos > > PHP Classes - Free ready to use OOP components written in PHP > http://www.phpclasses.org/ > > PHP Reviews - Reviews of PHP books and other products > http://www.phpclasses.org/reviews/ > > Metastorage - Data object relational mapping layer generator > http://www

Re: [PHP] bulk emailer

2005-03-14 Thread Redmond Militante
ulk email -- They've been fine-tuned to be really > good at it. > > -- > Like Music? > http://l-i-e.com/artists.htm -- Redmond Militante Software Engineer / Medill School of Journalism FreeBSD 5.2.1-RELEASE-p10 #0: Wed Sep 29 17:17:49 CDT 2004 i386 3:00PM up 12 days, 3:57, 3 use

[PHP] bulk emailer

2005-03-11 Thread Redmond Militante
addresses), the BCC field is so large that it is too large for the mail server to send out has anyone done a bulk emailer script to send out mass emails? if you have any advice re: methodology, i'd like to hear it. thanks redmond -- Redmond Militante Software Engineer / Medill

Re: AW: [PHP] export mysql to csv prob

2005-02-11 Thread Redmond Militante
tp://pear.php.net/package/Spreadsheet_Excel_Writer > > > >I found out that it is faster with huge data sets on my system. > > > >Greetings > >Mirco > > > >-Ursprüngliche Nachricht- > >Von: Redmond Militante [mailto:[EMAIL PROTECTED] > >

Re: [PHP] export mysql to csv prob

2005-02-11 Thread Redmond Militante
Blitz said: > Hi, > Probably the Pear Excel_Syltesheet_Writer works for you. > http://pear.php.net/package/Spreadsheet_Excel_Writer > > I found out that it is faster with huge data sets on my system. > > Greetings > Mirco > > -Ursprüngliche Nachricht- >

[PHP] export mysql to csv prob

2005-02-10 Thread Redmond Militante
utes. is this the most efficient way to do this? i'd like to be able to generate the file as quickly as possible. thanks redmond -- Redmond Militante Software Engineer / Medill School of Journalism FreeBSD 5.2.1-RELEASE-p10 #0: Wed Sep 29 17:17:49 CDT 2004 i386 4:45PM up 4:01, 3

Re: [PHP] Re: get user attributes php/ldap/win2k active directory

2005-01-19 Thread Redmond Militante
Date: Fri, 14 Jan 2005 15:32:15 -0600 From: Redmond Militante <[EMAIL PROTECTED]> To: php-general@lists.php.net Subject: Re: [PHP] Re: get user attributes php/ldap/win2k active directory Reply-To: Redmond Militante <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> User-Agen

[PHP] troubleshooting bulk email script

2004-11-05 Thread Redmond Militante
ame $middlename\" <$email>"; $from = "\"".$_REQUEST['str_from_name']."\" <".$_REQUEST['str_from_email'].">"; $to = str_replace("\\'", "'", $to); $from = str_replace("\\'",

[PHP] extracting substring from large text blob

2004-07-21 Thread Redmond Militante
would be the best string function to use? for instance, can i use preg match to extract the text between 'Name:' and 'Date:'? as these words would be the delimiters... thanks redmond -- Redmond Militante Software Engineer / Medill School of Journalism FreeBSD 5.2.1-RELEAS

[PHP] php->rtf/mw word weird characters

2004-03-03 Thread Redmond Militante
lication Data Form - Userid ".$userid."\par Essay 1 \par \par \par ".$mjp_essay1." \par \par \par Essay 2 \par \par \par ".$mjp_essay2."\page"; } $output=str_replace("<>",$string, $output); // send the generated document to the browser ec

[PHP] Re: get user attributes php/ldap/win2k active directory

2003-10-24 Thread Redmond Militante
ffer > $sr = ldap_search($ds, > 'OU=Employees,OU=Active Accounts,DC=whatever,DC=com', 'CN=*'); > > // Put the returned data into an array > $info = ldap_get_entries($ds, $sr); > > //loop through all the users and display their name > for($i = 0; $i <

[PHP] get user attributes php/ldap/win2k active directory

2003-10-23 Thread Redmond Militante
hi all my first email to the list re: php/ldap/win2k AD garnered no responses. i've got most of the problem solved, however i can't get attributes from the ldap server. i have a login script that authenticates against our win2k active directory domain controller. i'm able to open a connection

[PHP] search by keyword

2003-10-21 Thread Redmond Militante
hi all i'm trying to add a 'search by keyword' text field to a search page. the 'search by keyword' search field should allow users to enter a comma delimited string containing a list of keywords to search the database for. on the search_results page, what happens is: -i use explode() to break

Re: [PHP] need help w a for loop

2003-10-20 Thread Redmond Militante
s redmond [Mon, Oct 20, 2003 at 02:26:49PM -0700] This one time, at band camp, Chris W. Parker said: > Redmond Militante <mailto:[EMAIL PROTECTED]> > on Monday, October 20, 2003 2:15 PM said: > > > for($j=0; $j < $categories_count; $j++){ > > $categories_ar

[PHP] need help w a for loop

2003-10-20 Thread Redmond Militante
hi all i'm in need of pointers on how to get the following for loop working correctly for($j=0; $j < $categories_count; $j++){ $categories_array = array(); $tempval="str_categories".$j; array_push($categories_array,'$_REQUEST['.$tempval.']'); } it looks like it's appending the string '$_REQUEST[

[PHP] need help designing a job search agent

2003-10-20 Thread Redmond Militante
hi all i'm trying to decide how i'm going to go about designing a monster.com-esque 'job search' agent for my job postings site. what i'm thinking is, the job search agent basically executes a sql query based on user defined parameters, then based on a set time frame, executes the sql query ag

[PHP] ldap authentication to win2k domain controller

2003-10-10 Thread Redmond Militante
hi all i've been given the task of writing an app with a login mechanism that authenticates against the active directory users list on a windows 2000 domain controller. i have an apache 1.3.28 webserver running on FreeBSD 4.8-RELEASE, with php4.3.1 nstalled i don't have openldap support compil

Re: [PHP] Re: rich text editing

2003-08-21 Thread Redmond Militante
hi all i've been playing around with the 3.0 beta version of html area. it seems really nice. (thank you also btw, for the advice about the rtf tags...). the problem with html area is - it works great on ie and moz, but when you try to look at html area on a nonsupported browser -say, IE for

[PHP] rich text editing

2003-08-20 Thread Redmond Militante
hello all i have a text box as part of a form. the form submits to a mysql db. the text box holds a user's essay question, which is then stored in the mysql db as data type 'text'. i use when echoing the essay in html, and code such as $essay2=nl2br($essay2); $essay2 = str_replace( "", "