Re: [PHP] Missing email

2012-10-22 Thread Gerardo Benitez
://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez - Programador Web Freelance

Re: [PHP] PHP Emacs

2012-05-04 Thread Gerardo Benitez
General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez - Programador Web Freelance

Re: [PHP] Best PHP Template System

2012-05-04 Thread Gerardo Benitez
=$highlightDiv/ Content /div Feels a bit cleaner to me than writing div ?php if ($highlightDiv) : ?class=highlight?php endif; ? Content /div -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez

Re: [PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-05-03 Thread Gerardo Benitez
Softwaretechnik Behnke Heinrich-Heine-Str. 7D 21218 Seevetal http://www.behnke.biz -- Gerardo Benitez - Programador Web Freelance

Re: [PHP] How in PDOStatement-fetchAll use PDO::FETCH_GROUP for grouping more than one column simultaneously?

2011-05-11 Thread Gerardo Benitez
General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez - www.webseficientes.com.ar Diseño web, programación, Seo

Re: [PHP] gd Graphics Library Question (EXIF)

2011-04-29 Thread Gerardo Benitez
Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez - www.webseficientes.com.ar Diseño web, programación, Seo

Re: [PHP] Wiki formatting class or something similar

2011-04-29 Thread Gerardo Benitez
! -- With best regards from Ukraine, Andre Skype: Francophile Twitter: http://twitter.com/m_elensule Facebook: http://facebook.com/menelion -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez

Re: [PHP] something about dates in mysql

2011-03-03 Thread Gerardo Benitez
; - The result should be an array whith open cases at $thisdate, but nothing appear. Is it something about dates in mysql ? Thanks for any advice. Best regards, Venlige hilsner Rolf Brejner -- Gerardo Benitez - www.webseficientes.com.ar

Re: [PHP] new keyword combined with other things...

2010-12-07 Thread Gerardo Benitez
::getNewInstance() - method()* but is there any way to write it directly? and if not, why isn't this implemented yet and when will it be? best regards, Patranescu Alexandru -- Gerardo Benitez - www.webseficientes.com.ar Diseño web, programación, Seo

Re: [PHP] combo box validation

2010-06-08 Thread Gerardo Benitez
Hi Dave, In general, you can validate this condition with javascript before to send the form, and if some errors exist, the form is not submitted. or validate the conditions in the server side with php. Gerardo. www.webseficientes.com.ar On Mon, Jun 7, 2010 at 2:49 PM, David Mehler

Re: [PHP] session variables in tmp

2010-06-08 Thread Gerardo Benitez
root root 4096 Jun 5 00:46 tmp PHP 5.2.4 MySQL 5.0.45 any thought on where else to look. Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Gerardo Benitez

Re: [PHP] combo box validation

2010-06-08 Thread Gerardo Benitez
your advice is welcome! Gerardo www.webseficientes.com.ar On Tue, Jun 8, 2010 at 1:01 PM, Ashley Sheridan a...@ashleysheridan.co.ukwrote: On Tue, 2010-06-08 at 12:57 -0300, Gerardo Benitez wrote: Hi Dave, In general, you can validate this condition with javascript before to send

Re: [PHP] session variables in tmp

2010-06-08 Thread Gerardo Benitez
variable. Took me a little while to figure that one out. Thanks for your response. On Tue, 08 Jun 2010 12:00:23 -0400, Gerardo Benitez gerardobeni...@gmail.com wrote: Hi Stephen, you can try setting the session path using session_save_path http://www.php.net/manual/en/function.session

Re: [PHP] Finding out the first possible booking date with php

2009-12-03 Thread Gerardo Benitez
is_free = '1' order by id asd i hope that i have helped you Gerardo Benitez. On Thu, Dec 3, 2009 at 5:26 AM, Merlin Morgenstern merli...@fastmail.fmwrote: Hello everybody, I am pretty much stuck with a problem and I was hoping to find some help here with you guys. A PHP Script with MySQL

Re: [PHP] Trapping failure of file_get_contents()

2009-10-22 Thread Gerardo Benitez
Hi Marshall, the function file_get_contents may have problem with large files. You could try get the file using fread and feof. Here i put a example $contents = ''; while(!feof($stream)){ $contents .= fread($stream, 8192); } Gerardo Benitez. On Thu, Oct 22, 2009 at 12:38 PM

[PHP] avoid Denial of Service

2009-10-08 Thread Gerardo Benitez
Hi everybody! I want to get some tips about how avoid a attack of Denial of service. May be somebody can about your experience with Php o some configuration of apache, o other software that help in these case. Thanks in advance. -- Gerardo Benitez

Re: [PHP] Parse Question Using list()

2009-10-02 Thread Gerardo Benitez
$num fields in line $row: br //p\n; $row++; for ($c=0; $c $num; $c++) { echo $data[$c] . br /\n; } } fclose($handle); ? -- Gerardo Benitez