Re: [PHP] Re: May i?

2002-08-04 Thread Manuel
ECTED]... > > May i ask for help about a subejct on MySQL here? > > > > thanks, > > Flavio Bastos Amiel > > > > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php ~ Manuel Ochoa ~ Seven days is too long to wait for a gun! - Do You Yahoo!? Yahoo! Health - Feel better, live better

[PHP] Can this be done with mail()?

2002-07-13 Thread Manuel
I need to query a database and return a resultset. A php script will then sort through the data and send the data to the browser in the form of a table. Is it possible to gather the the results with html tags and store them in a variable so that the results can be emailed to someone? If so, ho

[PHP] Printer margins

2002-07-16 Thread Manuel
I'm creating an HTML file that will be printed by my website users. I've notices that most browser have the default print margins set to 0.75". Is there any way to change the print margins to 0.25"? - Do You Yahoo!? Yahoo! Autos - Get free new car price quotes

[PHP] Re: Application with barcodes

2002-11-25 Thread Manuel Lemos
w.phpclasses.org/pdfbarcode128 http://www.phpclasses.org/barcode -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Multiple page form

2002-11-26 Thread Manuel Lemos
st_sequential_form_page.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Need email solution

2002-11-26 Thread Manuel Ochoa
I'm setting up a Windows 2000 server with Apache, PHP and MySQL. I also need to setup email service for 1 domain name. I'm looking for any suggestions on SMTP software.

[PHP] Re: How to create zip files in PHP ?

2002-11-27 Thread Manuel Lemos
Hello, On 11/27/2002 01:08 PM, Php User wrote: How to create zip files in PHP ? I found that php's zip function are read only... Can any one help me with that ? You can find here a class ready to do exactly that: http://www.phpclasses.org/phpzip -- Regards, Manuel Lemos -

[PHP] Re: My first XML!

2002-11-27 Thread Manuel Lemos
want to try this class to compose nicely formatted XML documents: http://www.phpclasses.org/xmlwriter Or even this that already converts the XML data from and to MySQL: http://www.phpclasses.org/mysql_xml -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: sendmail problem!

2002-11-27 Thread Manuel Lemos
s to enable the immediate delivery mode. http://www.phpclasses.org/mimemessage I use that class with this other class for the same purpose as you to use the direct delivery mode using SMTP directly, thus without relying on SMTP: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos

[PHP] Re: mail with CC and BCC

2002-12-03 Thread Manuel Lemos
[EMAIL PROTECTED]"); http://www.phpclasses.org/mimemessage If the mail() function is really not working, you may need to use also the smtp_message sub-class along with this other class for sending: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing L

[PHP] Help with session variables

2002-12-03 Thread Manuel Ochoa
I'm running PHP 4.3 on a Windows .net server with Apache 2. Please look at the following code as I cannot figure out what I'm doing wrong. Page1. session_start(); session_register("step"); $step=1; header("location: page_A.php"); Page_A. session_start(); extract($_SESSION); $step=2; hea

[PHP] ANNOUNCE: Metastorage object persistence API generator

2002-12-05 Thread Manuel Lemos
_ Released Metastorage generator Manuel Lemos, 2002-12-05 16:11:44 GMT Metastorage is an application that is capable of generating persistence layer APIs. It takes a component definition defined in the Component Persistence Markup Language (CPML), a XML based format, and generates

[PHP] ANNOUNCE: Metastorage object persistence API generator

2002-12-05 Thread Manuel Lemos
_ Released Metastorage generator Manuel Lemos, 2002-12-05 16:11:44 GMT Metastorage is an application that is capable of generating persistence layer APIs. It takes a component definition defined in the Component Persistence Markup Language (CPML), a XML based format, and generates

[PHP] Metastorage generates Entity-Relationship class diagrams in UML

2002-12-09 Thread Manuel Lemos
the Metastorage documentation. Here you may find the complete announcement with example graphics and the relevant links: http://www.meta-language.net/news-2002-12-09-metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Mail Error

2002-12-13 Thread Manuel Ochoa
I have a Windows server running Apache 2 and PHP 4.3 I got the following error while using the mail() function: Warning: mail() [function.mail]: SMTP server response: 550 User not local. We don't relay in C:\Apache2\htdocs\mymail.php on line 22 Any ideas?

[PHP] Getting the username

2002-12-19 Thread Manuel Ochoa
I'm developing an Intranet at my company and was wondering if there is any way to get the username from someone who is already logged into a Windows network?

Re: [PHP] validate date

2002-12-19 Thread Manuel Ochoa
Here is a funtion that I use. A user can enter a date in any of the following ways: 01 01 03 01-01-03 1-1-03 01-1-2003 1-01/03 1/1 03 you get the idea... This function will standardize the date and make sure it's valid. If invalid it returns "ERROR" function fixdate($data){ $aux[0]=""; $aux[1]

Re: [PHP] case statement?

2002-12-19 Thread Manuel Ochoa
Yes, It's called "SWITCH" Just go to www.php.net and lookup "switch" in the function list Max Clark <[EMAIL PROTECTED]> wrote:Hi- I was wondering if php had a case function? Instead of building a large if/elseif/else block I would like to do a case $page in (list). Thanks in advance, Max

[PHP] Re: Mass Mailing

2002-12-21 Thread Manuel Lemos
ilar solution in C and does not take an etternity to develop and debug. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mass Mailing

2002-12-22 Thread Manuel Lemos
does not unsubscribe bouncing addresses right away, the solution was to remove bouncing subscribers using an external validation procedure. I used this other class for the cleanup. After that it was a breeze. We had peaks of 10,000 messages sent per minute. http://www.phpclasses.org/emailvalidati

[PHP] Re: Email problems.

2002-12-22 Thread Manuel Lemos
tions? This is the page I want to send: http://www.violasystems.com/e-news/template.html You may want to try this class for composing messages that lets you add parts from files. Just specify the URL as filename: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP Ge

[PHP] Re: Flow diagrams.

2002-12-26 Thread Manuel Lemos
ay > that information as a process flow diagram. You may want to look at Metastorage that draws graphs of classes of objects that are stored in a database: http://www.meta-language.net/news-2002-12-09-metastorage.html http://www.meta-language.net/metastorage.html -- Regards, Manuel Lemos --

[PHP] Re: Flow diagrams

2002-12-27 Thread Manuel Lemos
them in target image format. In the pages above there are some links to the relevant GraphViz pages. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail attachments

2003-01-02 Thread Manuel Lemos
://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Using mail() for mailist list app

2003-01-02 Thread Manuel Lemos
SENDMAIL_DELIVERY_DEFERRED to eliminate the queue time. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] accelerator and Apache 2

2003-01-02 Thread Manuel Ochoa
I recently installed the Zend Optimizer and noticed an improvement in preformance. I'm running Windows .NET Enterprise Server 2003 PHP 4.3.0 as a module Apache 2.0.43 Go to www.Zend.com Jochen Kaechelin <[EMAIL PROTECTED]> wrote:Is there a free php accelerator out there which runs under Apach

[PHP] PHP complied code

2003-01-02 Thread Manuel Ochoa
I recently read a book on PHP and the author breifly said that if you compile the PHP code it would improve the performance. Is there a way to compile the code?

[PHP] Re: Timeout during SMTP operation.

2003-01-02 Thread Manuel Lemos
k delivery. In that case you may want to try this class that comes with sub-classes that let you configure details of delivery depending on your local mailer. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: 2 servers for mail implementation

2003-01-02 Thread Manuel Lemos
e-mail. In the Web server configure qmail smtproutes control variable pointing to the other server that will only allow relaying messages from the Web server. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mass-mailing method

2003-01-02 Thread Manuel Lemos
uirks of using the mail() function. I use it to deliver in average 2 million message a month most of them with tens of thousands of recipients in Bcc:. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: How to attach a file to mail()

2003-01-03 Thread Manuel Lemos
o pass the file name of the uploaded file to add as an attachment: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: FW: [PHP] How to get the mail sending stuff to work on Win2k?

2003-01-05 Thread Manuel Lemos
the mail() function does not support: http://www.phpclasses.org/mimemessage To send via SMTP you also need this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Strange problem with MAIL

2003-01-06 Thread Manuel Lemos
blem in PHP configuration, some times it is a problem in the actual mail implementation and other times it is a mail server problem. I think what is more important to start having an idea is for you to tell if you are hosted under Unix/Linux or Windows. -- Regards, Manuel Lemos -- PHP

[PHP] Re: Strange problem with MAIL (Correction)

2003-01-06 Thread Manuel Lemos
eaders but this class puts all the headers that should be there. It also provides mail() function replacement functions that use different delivery methods which often is a problem depending on your platform. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing

[PHP] Re: Dreaded Return-Path and mail()

2003-01-06 Thread Manuel Lemos
gards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail() not working on Win2k

2003-01-06 Thread Manuel Lemos
7;s or anything turned on since it has built-in support for MySQL. Have you tried this alternative as I suggested in this other message to you? Many people solved their problem with it, so can you. http://news.php.net/article.php?group=php.general&article=130351 -- Regards, Manuel L

Re: [PHP] Re: mail() not working on Win2k

2003-01-06 Thread Manuel Lemos
ages unlike the mail() function. Now it is up to you if you want to progress in solving your problem. Regards, Manuel Lemos -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 4:28 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: mail() not working o

[PHP] Re: test_smtp.php

2003-01-07 Thread Manuel Lemos
solve your problem to try the test_smtp_mail.php script instead. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Need a suggestion on developing a php-related system

2003-01-07 Thread Manuel Lemos
mean exactly by captured and made available to internal staff? Do you mean aggregate from somewhere to a central place? Anyway, news feed compilation and aggregation leads to XML-RDF-RSS. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: Medium to Large PHP Application Design

2003-01-10 Thread Manuel Lemos
work that usually would take weeks or months to develop with hand written code. Metastorage is Open Source is available here: http://www.meta-language.net/news-2002-12-09-metastorage.html http://www.meta-language.net/metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List

[PHP] Re: Favorite Email validation routine?

2003-01-12 Thread Manuel Lemos
http://www.phpclasses.org/emailvalidation -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: attach image with the mail command?

2003-01-14 Thread Manuel Lemos
? Either way, you may want to try this class: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: MIME email...

2003-01-16 Thread Manuel Lemos
those bugs of mail() function that affect mail systems differently. You may want to try this class that has workarounds for some of the mail() function bugs. It also makes it simple to compose multipart/alternative messages: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -

[PHP] Re: PHP Review Site

2003-01-18 Thread Manuel Lemos
reviews, bu your work is exposed to tens of thousands of PHP users eager to learn about new classes. http://www.phpclasses.org/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Help with e-mail

2003-01-22 Thread Manuel Lemos
smtp_mail() emulates mail() completely with the advantage of features like authentication that mail() does not support. In that case you also need this other class for the actual SMTP delivery: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http

[PHP] Re: writing a newsletter program in php?

2003-01-22 Thread Manuel Lemos
ns, etc... and dedicating mailing list manager programs already do that. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: SMTP, mail() and piping directly into Sendmail, which is better?

2003-01-22 Thread Manuel Lemos
xt time it will run the queue. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: OO2relation mapping

2003-01-25 Thread Manuel Lemos
//www.meta-language.net/news-2002-12-09-metastorage.html http://www.meta-language.net/metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: OO2relation mapping

2003-01-26 Thread Manuel Lemos
and debug manually. http://www.meta-language.net/news-2002-12-09-metastorage.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: OO2relation mapping

2003-01-26 Thread Manuel Lemos
ke to know about the overlap of the projects, so you just don't duplicate efforts re-inventing the wheel. If your project provides something better of something that Metastorage does not provide, I would most certainly would like to know. -- Regards, Manuel Lemos -- PHP General Mailing List

[PHP] Re: Masive mail Advice

2003-01-26 Thread Manuel Lemos
each recipient. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mass Mailing

2003-01-26 Thread Manuel Lemos
to accept the message to make it harder for spammers. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Masive mail Advice

2003-01-26 Thread Manuel Lemos
Hello, On 01/26/2003 08:22 PM, Mark Charette wrote: -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED]] That number of messages is small and with today's servers you can queue that volume of personalized is less than a minute. Your problems will start as you enter i

Re: [PHP] Re: Masive mail Advice

2003-01-26 Thread Manuel Lemos
rately and so you may as well personalize the return path address. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: multiple entry forms !!

2003-01-27 Thread Manuel Lemos
rg/multipageforms -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Advice on uploaded files

2003-01-28 Thread Manuel Ochoa
I writting a php program for a small insurance company and they want to receive uploaded digital photos. Should I store the photos in a mysql database or in a directory on the hard drive? If you have experience with this any advice would be appreciated.

[PHP] Re: Best PHP db wrapper?

2003-01-30 Thread Manuel Lemos
ect repository that you may learn all about it here: http://www.meta-language.net/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: XML PHP question

2003-01-30 Thread Manuel Lemos
good and recommended: http://en.static.phpclasses.org/products.html/id/1861007213.html http://en.static.phpclasses.org/products.html/id/0735712271.html -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mailing with SMTP server requiring authentication

2003-02-02 Thread Manuel Lemos
() that emulates the mail() function except that it send the message through a SMTP server of your choice letting you specify the authentication credentials as you need: http://www.phpclasses.org/mimemessage You also need this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos

[PHP] Re: relayed mail question

2003-02-03 Thread Manuel Lemos
Hello, On 02/03/2003 07:57 AM, Wmb wrote: <[EMAIL PROTECTED]>: Name service error for MAIL.rtinsmetsers.com: Host not found Because there is no DNS record for the domain MAIL.rtinsmetsers.com . -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: PHP Application Server

2003-02-05 Thread Manuel Lemos
ink it would be appropriate to develop a new SAPI driver that would make PHP run as standalone daemon accepting many custom protocol requests in parallel. All this is better said than done because it is not a trivial matter. In any case, good luck. -- Regards, Manuel Lemos -- PHP General Mai

Re: [PHP] PHP Application Server

2003-02-05 Thread Manuel Lemos
servers on the commercial markets. I'd really like to hear anyone else's feedback. Thanks for yours Manuel. BTW... a standalone daemon is exactly what I have in mind. I am in the process of creating the website for the project. I will have all of the info there. I'll post the link when i

[PHP] Re: possible mail() bug

2003-02-11 Thread Manuel Lemos
properly. You may want to try this class that provides alternative means to send messages like using the sendmail program directly, qmail or SMTP instead of using the mail() function. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net

[PHP] Re: I need examples of WRITING to XML wth PHP

2003-02-13 Thread Manuel Lemos
riter -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTML Mail problem

2003-02-14 Thread Manuel Lemos
with qmail-inject program: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTML Mail problem

2003-02-15 Thread Manuel Lemos
ng. Have you tried the class I mentioned? It provides work around for some problematic situations. Regards, Manuel Lemos Mark. "Manuel Lemos" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On 02/14/2003 01:56 PM, Mark McCulligh

[PHP] Re: forking sendmail

2003-02-15 Thread Manuel Lemos
program directly. It comes with options to let you choose the appropriate sendmail delivery mode: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTML Mail problem

2003-02-15 Thread Manuel Lemos
diate complains from several concerned users. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Duh uuh ?

2003-02-15 Thread Manuel Lemos
ontacting the author? He's probably the person that can help you more than anybody else. There are other calendar classes like this one that comes with examples: http://www.phpclasses.org/calendargenerator -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: forking sendmail

2003-02-17 Thread Manuel Lemos
t away because if you attempt to deliver many messages at once you can exhaust your server resources easily and your script will break. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: emptying jammed mailbox by PHP?

2003-02-17 Thread Manuel Lemos
delete your messages. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] File upload problem

2003-02-18 Thread Manuel Ochoa
['tmp_name'], "files/".$_FILES['imagefile']['name']) or die ("Could not copy"); echo "Name: ".$_FILES['imagefile']['name'].""; } else { echo ""; echo "Could Not Copy, Wrong Filetype (".$_FILES['imagefile']['name'].")"; } } ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php ~ Manuel Ochoa ~ Seven days is too long to wait for a gun!

[PHP] Re: Zend Encoder

2003-02-24 Thread Manuel Lemos
echnically possible to get your code decrypted because after all that is what happens before it is executed. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: MIME help needed please...

2003-02-25 Thread Manuel Lemos
) function. You may want to try this class for composing and sending MIME messages as it works around some of those bugs: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mail (), BBC: recipients not receiving my Newsletter

2003-02-26 Thread Manuel Lemos
tp://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: using php to rotate ad banners

2003-02-26 Thread Manuel Lemos
t use phpAdsNew? http://www.phpadsnew.com/ -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Mail (), BBC: recipients not receiving my Newsletter

2003-02-27 Thread Manuel Lemos
u can see the dialog with the SMTP server. That should help figuring what is your problem. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: using php to rotate ad banners

2003-02-27 Thread Manuel Lemos
will learn more than you will possible learn from this list as this is not a trivial issue as you may imagine. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mailling question

2003-03-02 Thread Manuel Lemos
mail, etc...). http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail function and Bcc restriction?

2003-03-02 Thread Manuel Lemos
separating them with commas , . -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mail() Failing to connect

2003-03-02 Thread Manuel Lemos
to see the SMTP dialog so you can figure what is the problem: http://www.phpclasses.org/mimemessage Use it in conjunction with this: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Calendar

2003-03-02 Thread Manuel Lemos
demonstrated in the example: http://www.phpclasses.org/calendarclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail() in Linux

2003-03-04 Thread Manuel Lemos
TP server to send messages. SMTP is only needed to receive or relay messages. In Linux sendmail or a similar program can send the messages for you. Usually your default php.ini configuration will work. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubsc

[PHP] Re: html mail

2003-03-10 Thread Manuel Lemos
? Try this class that does exactly what you ask and comes with easy to understand examples to get you started with it very quickly: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Persistent values between executions

2003-03-10 Thread Manuel Lemos
e, if your variables will be used to generate portions of HTML pages, it would be more efficient to cache those portions of HTML data instead of the variables that is only used to regenerate such HTML data. -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] Re: Form input security

2003-03-10 Thread Manuel Lemos
://www.phpclasses.org/metabase -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Valid Email Question

2003-03-11 Thread Manuel Lemos
this class that does precisely that. Some times it may not be conclusive but when it determines that an e-mail address is not accepted you can rely on that conclusion. http://www.phpclasses.org/emailvalidation -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] Re: SMTP Authenticate

2003-03-15 Thread Manuel Lemos
sends the message to a SMTP server that you specify: http://www.phpclasses.org/mimemessage You also need this class to do the actual SMTP delivery: http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

[PHP] mail(); works, but only for mails to my (mail)server

2003-03-16 Thread Manuel Glauser
e to include special headers? Thank you very much for yar answer! Greetz Manuel, Berne, Switzerland

[PHP] Re: Zend

2003-07-01 Thread Manuel Lemos
make your site fly: http://www.turcksoft.com/en/e_mmc.htm -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Image Verification (On Submit)

2003-07-01 Thread Manuel Lemos
: CAPTCHA http://www.phpclasses.org/captcha -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Minimizing Database Hits

2003-07-01 Thread Manuel Lemos
les. For arbitrary data caching, you may want to try this class: http://www.phpclasses.org/filecacheclass -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP] Re: Email troubles

2003-07-01 Thread Manuel Lemos
replacement without changing your scripts too much: http://www.phpclasses.org/mimemessage You also need this for message delivery. http://www.phpclasses.org/smtpclass -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing

[PHP] Re: mysql detect

2003-07-02 Thread Manuel Lemos
Hello, On 07/02/2003 04:05 AM, [EMAIL PROTECTED] wrote: what command in linux , to see default direcktory instalation mysql database dan mysql library ./configure ? -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List

[PHP] Re: OCI_ASSOC returns key with upper case string

2003-07-04 Thread Manuel Lemos
n portability. http://www.phpclasses.org/metabase -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] ANN: Metastorage generates form handling classes

2003-07-10 Thread Manuel Lemos
wrapper. -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Mailing list server with PHP frontend

2003-07-12 Thread Manuel Lemos
he subscription records. The messages are stored in disk files though. -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Mailing list server with PHP frontend

2003-07-12 Thread Manuel Lemos
ostfix too: http://www.dmumford.com/tech/ezmlm-postfix.html -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Send mail using external server

2003-07-14 Thread Manuel Lemos
want to use a direct replacement for the mail() function you may want to try this other class in conjunction as it comes with a wrapper function named smtp_mail() that emulates the mail() function but lets you send it via SMTP directly. http://www.phpclasses.org/mimemessage -- Regards, Manuel

Re: [PHP] HTML email with Outlook

2003-07-15 Thread Manuel Lemos
ever got fixed. In that case you may want to try this class that has built-in workarounds for some of the mail() function bugs. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mai

  1   2   3   4   5   6   7   8   9   10   >