Re: [PHP] Architecture patterns in PHP

2008-12-30 Thread Manuel Lemos
retrieve data for read-only purposes. It is much more efficient than using whole persistent objects because it only retrieves the object variables that you need into arrays. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP

Re: [PHP] PHP telnet server

2008-12-30 Thread Manuel Lemos
, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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] Architecture patterns in PHP

2008-12-29 Thread Manuel Lemos
and route requests to different application modules. If you separate things, you do not need to build or learn any framework to handle things separately. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written

Re: [PHP] Architecture patterns in PHP

2008-12-29 Thread Manuel Lemos
...) is a good thing to help keeping the project organization (and your mental sanity) as you project grows. You can separate concerns without using MVC, especial front controllers that go through many hops to sort which code to execute. -- Regards, Manuel Lemos Find and post PHP jobs http

Re: [PHP] Architecture patterns in PHP

2008-12-29 Thread Manuel Lemos
. strace is more useful for PHP core developers as it tells which system calls are more expensive and could be worth some optimization. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Read Form values prior to submit?

2008-12-28 Thread Manuel Lemos
a single definition of the validations you want. http://www.phpclasses.org/formsgeneration Here is a live demo form: http://www.meta-language.net/forms-examples.html?example=test_form -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready

[PHP] Re: turn shared hosting server to external image storage hosting

2008-12-28 Thread Manuel Lemos
) that expands S3 to serve files closer to different world regions. http://aws.amazon.com/cloudfront/ -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List

[PHP] Re: Architecture patterns in PHP

2008-12-28 Thread Manuel Lemos
in the scope of a well structured project and the methodology that describes how map use cases to PHP code for Web applications. http://www.meta-language.net/metastorage-example.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP

Re: [PHP] Re: imap_rfc822_parse_adrlist problem

2008-12-21 Thread Manuel Lemos
: http://www.phpclasses.org/mimeparser Thanks, I'll have a look at that. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net

[PHP] Re: imap_rfc822_parse_adrlist problem

2008-12-20 Thread Manuel Lemos
. Nowadays I use an e-mail address parser class written in pure PHP that comes with this MIME parser class: http://www.phpclasses.org/mimeparser -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: imap_rfc822_parse_adrlist problem

2008-12-20 Thread Manuel Lemos
. Nowadays I use an e-mail address parser class written in pure PHP that comes with this MIME parser class: http://www.phpclasses.org/mimeparser -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http

RE: [PHP] Downloading file from local network machine

2008-12-05 Thread Manuel Lemos
/smb4php -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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: Trre/Drop Down quick app for testing database tbls

2008-11-30 Thread Manuel Lemos
/video/3/package/1.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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: PHP job available, Phoenix, AZ, USA

2008-10-04 Thread Manuel Lemos
/us/ -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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] Shopping Carts/Checkout Software

2008-09-09 Thread Manuel Barros Reyes
On Mon, Sep 8, 2008 at 12:09 PM, Charlene [EMAIL PROTECTED] wrote: The company I work for is going to be creating the catalog to a small store (~100 items). The customized catalog will include the front end that the shoppers will use as well as the back end data entry. We need shopping

[PHP] Re: xss filter

2008-09-08 Thread Manuel Lemos
really secure. There most be some safe way to filter out xss without filtering out all html. Or...? Here you may find some classes for that: http://www.phpclasses.org/browse/class/78.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready

[PHP] Re: Sending out mass emails

2008-09-07 Thread Manuel Lemos
even when the headers vary for instance the To: and Return-Path: . It saves a lot of server load that otherwise would be wasted rebuilding the same message body. http://www.phpclasses.org/mimmessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes

[PHP] Re: Sending out mass emails

2008-09-07 Thread Manuel Lemos
recipients. Internally the class can cache the message body even when the headers vary for instance the To: and Return-Path: . It saves a lot of server load that otherwise would be wasted rebuilding the same message body. http://www.phpclasses.org/mimmessage -- Regards, Manuel Lemos Find and post

[PHP] Re: fsockopen in phpmailer and tls

2008-09-07 Thread Manuel Lemos
://www.phpclasses.org/smtpclass and this to initiate authentication: http://www.phpclasses.org/sasl -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http

[PHP] Re: Geometrical library

2008-09-06 Thread Manuel Lemos
would need calculations based on surfaces. Does anyone know of something that could help me? I think this PHP class does exactly what you need: http://www.phpclasses.org/polygon -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP

[PHP] Re: Job opening in Leiden, Netherlands: PHP/MySQL developer

2008-09-01 Thread Manuel Lemos
://www.phpclasses.org/professionals/country/nl/ -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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

[PHP] Re: Individual bulk e-mails - performance question

2008-08-30 Thread Manuel Lemos
, so your PHP script is freed to send messages to other recipients. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General

Re: [PHP] Re: Individual bulk e-mails - performance question

2008-08-30 Thread Manuel Lemos
script execution is meaningless. -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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

[PHP] Re: newsletter code

2008-08-11 Thread Manuel Lemos
. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - 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

[PHP] Re: Using Ajax to populate a drop-down list

2008-08-08 Thread Manuel Lemos
-language.net/forms-examples.html?example=test_linked_select Here you can watch a tutorial video about this plug-in: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-linked-select.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes - Free

[PHP] Re: Byte range support

2008-07-16 Thread Manuel Vacelet
On Tue, Jul 15, 2008 at 3:53 PM, Manuel Vacelet [EMAIL PROTECTED] wrote: Hello all, How can I make my php apps aware of byte range HTTP request ? I have a script that output data to user if she's granted to do so. But as of today, if download fails, she must restart the download from

[PHP] Re: Freelance PHP development in India

2008-07-16 Thread Manuel Lemos
many developers from India: http://www.phpclasses.org/professionals/country/in/ If you want to post a job of interest to these developers, you may do it here: http://www.phpclasses.org/post_job.html -- Regards, Manuel Lemos Find and post PHP jobs http://www.phpclasses.org/jobs/ PHP Classes

[PHP] Byte range support

2008-07-15 Thread Manuel Vacelet
(actually, this is what curl and wget claims!) -- Manuel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: UK PHP Host/Developer Required

2008-06-13 Thread Manuel Lemos
at this directory of PHP professionals from UK available for taking jobs. You even choose from developers near your region and check if they have the skills you need: http://www.phpclasses.org/professionals/country/uk/ -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org

[PHP] Re: Capture homepage screenshot

2008-06-13 Thread Manuel Lemos
PHP on Windows, you can use this PHP class that was just released and does exactly what you need. I think it could be adapted to work with Firefox too. http://www.phpclasses.org/win-screenshot -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals

[PHP] Re: How to structure code for forms

2008-06-08 Thread Manuel Lemos
submission, paged layouts, interconnected inputs, form page animation, etc.. Here you may find some demonstrative examples that you may try live: http://www.meta-language.net/forms-examples.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org

[PHP] Re: Sr. PHP Engineer job opportunity / Denver

2008-06-06 Thread Manuel Lemos
. You may want to take a look at this directory of PHP professionals available for taking PHP jobs in the United States. You may even narrow your search professionals that have the skills you need: http://www.phpclasses.org/professionals/country/us/ -- Regards, Manuel Lemos PHP professionals

[PHP] looking a regular expresion

2008-05-27 Thread Manuel Pérez López
Hello: I need to include a pair of negations with two complete word into a regular expresion for preg_replace. How to do this? I want to replace I want to be a SUN and a SIR with FRIKI FRIKI FRIKI FRIKI FRIKI SUN FRIKI FRIKI SIR ie. the words are: SUN and SIR. And the replacement word is: FRIKI

[PHP] recursive function

2008-05-24 Thread Manuel Pérez López
Hello everyone: Is it possible to do recursive this function? I can write it so linear. But only a finite number of loops. Thanks. Manuel Perez This is: function ($field, $arr_secuence_reverse) { if (count($arr_secuence_reverse) == 1) { return

[PHP] Re: PHP authenticating user over SSL

2008-05-23 Thread Manuel Lemos
variables to check when the user provides a valid client certificate. http://wiki.egee-see.org/index.php/Simple_Apache-SSL_integration_and_DN-based_authentication -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready

[PHP] Re: Job: Wanted, Dead or Alive: PHP/Drupal programmers in Chicago

2008-05-19 Thread Manuel Lemos
to the community. We are looking for full time on-site programmers, but are open to summer interns as well. If you have questions, contact me off-list. To apply, see the link above. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP

[PHP] pg_update and PGSQL_DML_STRING

2008-05-19 Thread J. Manuel Velasco - UBILIBET
Hello, The option PGSQL_DML_STRING doesn't work with pg_update to me. I try the same option with pg_insert and it worked as I expected, but with pg_update I can't see the query and it is executed. I have an error in the query and I need to debug, so watch it is imperative. Anybody can help

[PHP] encoding to a file

2008-05-16 Thread J. Manuel Velasco - UBILIBET
Hello. When I create a file I need to specify the encoding to ISO-8859-1, how can i do this please ? I have read about stream:default:encoding() but I am not sure how to use it. Thanks in advance. --

[PHP] Re: Scottish Devs

2008-05-15 Thread Manuel Lemos
free. You may want to take a look here to see if you find qualified PHP developers in that region: http://www.phpclasses.org/professionals/country/uk/ -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP

[PHP] Re: fsockopen on ssl://

2008-05-13 Thread Manuel Lemos
including establishing SSL corrections and setting and handling timeouts correctly. http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Handling Incoming Email Attachments

2008-05-07 Thread Manuel Lemos
you to extract attachements from messages of any size without exceeding your PHP memory limits. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org

Re: [PHP] PHP debugger

2008-04-30 Thread J. Manuel Velasco - UBILIBET
NOTE: If you are interesting in PHP Debuggers, this is not the mail, check the start of the thread since after I decided to try JasonPruim Debug :p we are trying to solve one specific problem. Now, to who is following the thread ... don't hung me, but i think the problem was there was because

Re: [PHP] PHP debugger

2008-04-29 Thread J. Manuel Velasco - UBILIBET
, 2008, at 10:58 AM, J. Manuel Velasco - UBILIBET wrote: Ok, so I am going to try this one, Jason Pruim, let's check how it works ... :p PROBLEM DESCRIPTION: In my whois web-app, when a EU doamin is queried, whois.pl perl script is lunched and I got the right result to my PHP script

Re: [PHP] PHP debugger

2008-04-29 Thread J. Manuel Velasco - UBILIBET
in your script where you have "default:" in your switch, you have a : instead of a ; May be causing some grief :) On Apr 29, 2008, at 4:54 AM, J. Manuel Velasco - UBILIBET wrote: Hi, Thanks for the replay, at least the debugger runs and it's ea

[PHP] curiosidad

2008-04-28 Thread J. Manuel Velasco - UBILIBET
Hello, Since I saw in avaaz site [http://www.avaaz.org/en/], I felt the curiosity to know how to develop a system like they use to spread the world. It is to connect to a address directory and get our contacts. Anybody knows any library, references,... to know how to develop this service?

[PHP] PHP debugger

2008-04-28 Thread J. Manuel Velasco - UBILIBET
Hello, Anybody knows a good debugger for PHP and basic usage? I've found: http://dd.cron.ru/dbg/, what do you think about it ? Thanks. --

Re: [PHP] PHP debugger

2008-04-28 Thread J. Manuel Velasco - UBILIBET
, at 10:32 AM, Thijs Lensselink wrote: Quoting Daniel Brown [EMAIL PROTECTED]: On Mon, Apr 28, 2008 at 7:00 AM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage

Re: [PHP] reading Qmail boxes

2008-04-26 Thread Manuel Lemos
use this class to parse the messages and extract the addresses from bouncing messages. http://www.phpclasses.org/mimeparser -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP

Re: [PHP] reading Qmail boxes

2008-04-26 Thread Manuel Lemos
/delivery-status, the MIME parse returns the boucing addresses and associated bouncing reasons. Take a look at the test_message_decoder.php example script to see it in action. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes

[PHP] how to use passthru ()

2008-04-24 Thread J. Manuel Velasco - UBILIBET
Hello, I have two perl scripts that runs fine in the shell. But when I build a page with them, only in one case the results are shown in the other case i see a blank page. I have done different test and I don't understand this issue. I don't know what i am doing wrong. Follows the link to

Re: [PHP] Re: how to use passthru ()

2008-04-24 Thread J. Manuel Velasco - UBILIBET
your EGO. M. Sokolewicz escribi: J. Manuel Velasco - UBILIBET wrote: Hello, I have two perl scripts that runs fine in the shell. But when I build a page with them, only in one case the results are shown in the other case i see a blank page. I have done different test and I

Re: [PHP] Denver PHP opportunity - Senior Software Engineers

2008-04-21 Thread Manuel Lemos
Hello, You may want to take a look here and find qualified PHP developers near your region. You may even search for developers that have relevant skills. http://www.phpclasses.org/professionals/country/us/ -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http

[PHP] Re: HTTP Server Written entirely in PHP ?

2008-04-18 Thread Manuel Lemos
://www.phpclasses.org/astahttpd -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: books for php

2008-04-10 Thread Manuel Lemos
Hello, on 04/06/2008 12:28 PM news.php.net said the following: Which are the good books for learning php? Here you may find several PHP books that got good reviews: http://www.phpclasses.org/reviews/latest/latest.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http

[PHP] Re: How to create combo-boxes/list boxes connected with MS SQL Serverdatabase in PHP scripts

2008-04-10 Thread Manuel Lemos
-in: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-linked-select.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General

Re: [PHP] APC FastCGI != upload progress ?

2008-04-10 Thread Manuel Lemos
iframe. That Javascript communicates and updates with the iframe parent page. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing

[PHP] Google App Engine needs PHP support

2008-04-10 Thread Manuel Lemos
Hello, Google App Engine was launched but it does not support PHP. This article presents some ideas that can help Google adding PHP support sooner rather than later. http://www.phpclasses.org/blog/post/77-Google-App-Engine-needs-PHP-support.html -- Regards, Manuel Lemos PHP professionals

[PHP] Re: Dynamic dropdown lists (select)

2008-04-06 Thread Manuel Lemos
: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-linked-select.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP

Re: [PHP] APC FastCGI != upload progress ?

2008-04-05 Thread Manuel Lemos
equally well in all browsers including Webkit. On Wed, Apr 2, 2008 at 12:09 AM, Manuel Lemos [EMAIL PROTECTED] wrote: Hello, on 03/30/2008 02:52 PM steve said the following: Hmmm... I am working on a PHP daemon for comet style connections... I'll keep that idea in mind. I guess that using

Re: [PHP] APC FastCGI != upload progress ?

2008-04-02 Thread Manuel Lemos
might want to document that. FastCGI is also breaking Apache's deflate module, but that is another issue... Couldn't it be deflate buffering FastCGI output? -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready

Re: [PHP] Reporting mail as spam

2008-04-02 Thread Manuel Lemos
to tell what you may be doing wrong without seeing your code. Anyway, I recommend you this popular PHP MIME message class that I use that knows how to send e-mail standards compliant messages: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP professionals looking for PHP jobs

[PHP] Re: character encoding

2008-03-29 Thread Manuel Lemos
of PHP that prevents Hotmail from accepting messages sent by PHP scripts. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing

[PHP] Re: character encoding

2008-03-28 Thread Manuel Lemos
Hello, on 03/28/2008 12:08 PM Bill said the following: Hi Manuel In the body that column shows Brébeuf in Windows Outlook. You may want to try this MIME message composing and sending class that http://www.phpclasses.org/mimemessage Looks great Manuel.but my server is under dyndns

[PHP] Re: Quick email address check

2008-03-26 Thread Manuel Lemos
to the SMTP server of the e-mail domain. It does not finish to send the message. The message could still bounce later, but at least you will still detect some invalid addresses. http://www.phpclasses.org/emailvalidation -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http

[PHP] Re: character encoding

2008-03-26 Thread Manuel Lemos
character set either in the text and in the message body. Take a look test_email_message.php for single by character sets or even the test_multibyte_message.php if you are not using multibyte character sets. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP professionals looking

[PHP] Re: Will the progress bar like Xupload add too much weight to the Apacheserver?

2008-03-20 Thread Manuel Lemos
: http://www.phpclasses.org/browse/video/1/package/1/section/plugin-upload-meter.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General

[PHP] Re: Problems with mime encoding of Japanese Characters in Subject and'From:', 'Reply-to:', ... fields.

2008-03-20 Thread Manuel Lemos
with encoded headers correctly using any character set. Take a look at the test_multibyte_message.php example script: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP

[PHP] Re: Sendmail question

2008-03-15 Thread Manuel Lemos
not properly encoded all characters in the HTML. I recommend that you a class that knows how to properly message bodies with quoted-printable. I use the MIME message class. Take a look at the test_simple_html_mail.php example script. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP

[PHP] Re: PHP Ajax progress bar

2008-03-12 Thread Manuel Lemos
-- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - 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: Alternative to Quickforms - Not Use Tables

2008-03-05 Thread Manuel Lemos
it uses tables, so you do not have to hardcode widths to make field rows and label columns align, but you can override the default templates and set them to use tableless HTML. http://www.phpclasses.org/formsgeneration Take a look at the test_auto_layout_form.php example. -- Regards, Manuel

Re: [PHP] Shopping Carts

2008-02-27 Thread Manuel Barros Reyes
Hi, talking about Shopping Carts I am looking for one thats good but that it is also flexible when you need custom designs and extesibility. I've had experience with osCommerce and their designs are very rigid. It works out of the box but as soon as you need to customize design it's PITA cause

[PHP] Flexible Shopping Cart (was: Shopping Carts)

2008-02-27 Thread Manuel Barros Reyes
I've sent a message some hours ago and committed the mistake of including it inside of an already started thread, don't know if someone read it. The details are in that thread but basically what I am looking for is a shopping cart that has flexibility with respect to the graphical layout of

Re: [PHP] Re: PHP cuts download process prematurely

2008-02-26 Thread Manuel Barros Reyes
On Tue, Feb 26, 2008 at 3:07 AM, Andrés Robinet [EMAIL PROTECTED] wrote: You need the log files to know exactly what the problem is. And, even if you are I'll try to rescue those logs many thanks again. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: PHP cuts download process prematurely

2008-02-26 Thread Manuel Barros Reyes
On Tue, Feb 26, 2008 at 3:07 AM, Andrés Robinet [EMAIL PROTECTED] wrote: Though this is not likely to solve the problem, try adding the following two lines at the beginning of the script (even before you query the database and do all your logic) ignore_user_abort(true);

Re: [PHP] How do you send stylized email?

2008-02-26 Thread Manuel Lemos
class. Try the test_simple_html_mail_message example script for instance. http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Set PHP session expire to 2 months

2008-02-25 Thread Manuel Barros Reyes
in advance. Manuel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP cuts download process prematurely

2008-02-25 Thread Manuel Barros Reyes
; } header(Content-Type: application/octet-stream); header(Content-Disposition: attachment; filename=$nombre_archivo); header(Content-Length: .strlen($contenido)); echo $contenido; } ? Thanks in advance Manuel -- PHP General Mailing List (http://www.php.net

[PHP] Re: Copy Network Share W/ Diff. Creds To Local Folder?

2008-02-21 Thread Manuel Lemos
to make this happen? Yes, you can use this stream handler class that lets you access files in Windows shares as if they were local files: http://www.phpclasses.org/smb4php -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free

[PHP] Re: php+mail+TLS/SSL

2008-02-14 Thread Manuel Lemos
. mail() function/sendmail deliveries do not require additional classes: http://www.phpclasses.org/smtpclass http://www.phpclasses.org/sasl -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components

Re: [PHP] Curl doesn't handle memory stream

2008-02-13 Thread Manuel Lemos
); ? It does not seem like it is a real bug but maybe file access is implemented inside Curl and it has no knowledge about PHP stream support. Alternatively, you may want to try this HTTP client class, which can use any access files you need to use in your HTTP requests. -- Regards, Manuel Lemos

Re: [PHP] Curl doesn't handle memory stream

2008-02-13 Thread Manuel Lemos
using 5.2.5. manuel, thanks for your time as well. of course i can just use a file, but im somewhat interested in this feature. and im not sure if curl implements the file handling on its own, otherwise why would i have partial success with certain urls? i think something goofy is going

Re: [PHP] Copying 1000s files and showing the progress

2008-02-13 Thread Manuel Lemos
how to give progress feedback of a task running on the server: http://www.meta-language.net/forms-examples.html?example=test_ajax_form -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components

Re: [PHP] Re: Recommended ORM for PHP

2008-02-12 Thread Manuel Lemos
check the Metastorage documentaion: http://www.metastorage.net/ sure, I'll check it out when I have some free time -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Ajax, an HTML form being saved in mySQL

2008-02-10 Thread Manuel Lemos
with a variant of that plug-in that can perform an AJAX request and retrive the new options from a MySQL database. http://www.phpclasses.org/formsgeneration -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP

Re: [PHP] Re: Recommended ORM for PHP

2008-02-08 Thread Manuel Lemos
differences in the approaches, you may check the Metastorage documentaion: http://www.metastorage.net/ sure, I'll check it out when I have some free time -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use

Re: [PHP] Re: Recommended ORM for PHP

2008-02-07 Thread Manuel Lemos
Metastorage approach. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - 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

Re: [PHP] Re: Recommended ORM for PHP

2008-02-07 Thread Manuel Lemos
://www.metastorage.net/ -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - 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

[PHP] Re: Recommended ORM for PHP

2008-02-06 Thread Manuel Lemos
/screenshots.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - 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

Re: [PHP] Recommended ORM for PHP

2008-02-06 Thread Manuel Lemos
if you are interested: http://www.meta-language.net/metastorage-faq.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http://www.phpclasses.org/ -- PHP General Mailing

[PHP] Re: How could i do this on CURL?

2008-02-05 Thread Manuel Lemos
the test_http_soap.php example which seems to do something similar to what you want: http://www.phpclasses.org/httpclient -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http

[PHP] Re: Doctrine vs. Propel

2008-02-04 Thread Manuel Lemos
/metanews.html Here you may see some screenshots of the Web user interface of the generator tool and screenshots of the applications: http://www.meta-language.net/screenshots.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free

[PHP] Re: Effecient mass mailings

2008-02-04 Thread Manuel Lemos
these features, I am sure you can benefit of great mass mailing performance boost: http://www.phpclasses.org/mimemessage -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http

Re: [PHP] We need PHP/LAMP Developers and Programmers in FL, MD, VA,NY, DC, CA, MA!!!!

2008-01-30 Thread Manuel Lemos
, and love the work they do. If you like working in a fun, laid-back, yet exciting environment; then we want to hear from you! Have you looked at the PHP Professionals directory? http://www.phpclasses.org/professionals/country/us/ -- Regards, Manuel Lemos PHP professionals looking for PHP jobs

[PHP] Re: Looking for easier way to build email message

2008-01-24 Thread Manuel Lemos
and have it processed for each recipient. The class above comes with two alternative examples for doing that: Using simple template string concatenation: test_personalized_bulk_mail.php or using Smarty templates: test_smarty_personalized_mailing.php -- Regards, Manuel Lemos PHP professionals

Re: [PHP] $_POST Array and Cleaning

2008-01-22 Thread Manuel Vacelet
can clean for sql injection and xss. any ideas here? Consider usage of a 3rd party lib like Inspekt: http://code.google.com/p/inspekt/ -- Manuel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Question About Blocking Email Addresses in Forms

2008-01-18 Thread Manuel Lemos
, -strlen($block)) === $block) { do whatever you want to not accept this address; } If you iterate this code over a list of blocked domains taken from an array, you have implemented a generalized black list. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http

Re: [PHP] SMTP vs mail()

2008-01-17 Thread Manuel Lemos
the details. http://www.phpclasses.org/blog/post/65-8-defensive-programming-best-practices-to-prevent-breaking-your-sites.html -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP

Re: [PHP] Re: SMTP vs mail()

2008-01-15 Thread Manuel Lemos
could see it reads each message from the TCP socket into a file passing it through eventual mail filters (miltering) and in the end of each message it forks the queue manager process to inject the message in the queue. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http

Re: [PHP] Re: SMTP vs mail()

2008-01-15 Thread Manuel Lemos
it says a new process is spawned for each message. Sendmail is a beast but it's not that bad. I'm sure you *could* configure it to do that, but you'd need to explicitly make that decision yourself. Where do you think it says that? I suspect Manuel is confusing PHP's built-in mail() function

Re: [PHP] SMTP vs mail()

2008-01-15 Thread Manuel Lemos
. qmail too. Sendmail can be configured to just queue the messages too but that is not its default configuration. -- Regards, Manuel Lemos PHP professionals looking for PHP jobs http://www.phpclasses.org/professionals/ PHP Classes - Free ready to use OOP components written in PHP http

<    1   2   3   4   5   6   7   8   9   10   >