Re: [PHP] Missing email

2012-10-22 Thread Gerardo Benitez
ager > http://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] Best PHP Template System

2012-05-04 Thread Gerardo Benitez
gt; > > >Content > > > Feels a bit cleaner to me than writing > > class="highlight"> >Content > > > -- > 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
t; -- > RMA. > > -- > 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 Mailto() - Google now displaying HTML as Plain Text

2012-05-03 Thread Gerardo Benitez
7;; > > > -- > Marco Behnke > Dipl. Informatiker (FH), SAE Audio Engineer > Zend Certified Engineer PHP 5.3 > > Tel.: 0174 / 9722336 > e-Mail: ma...@behnke.biz > > 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
t;[col3] => 2 >[col4] => boroda 7 > ) > [1] => Array > ( > [col3] => 2 >

Re: [PHP] Wiki formatting class or something similar

2011-04-29 Thread Gerardo Benitez
ed by an > image in my directory. > Thanks in advance! > > > > -- > With best regards from Ukraine, > Andre > Skype: Francophile > Twitter: http://twitter.com/m_elensule > Facebook: http://facebook.com/menelion > > > -- > PHP General Mailing List (ht

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

2011-04-29 Thread Gerardo Benitez
reatetruecolor > imagecopyresized > imagejpeg > > Thanks in advance, > Mitch > > -- > PHP 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] something about dates in mysql

2011-03-03 Thread Gerardo Benitez
rtdate<=$thisdate AND enddate>=$thisdate ORDER BY startdate"; > > - > > The result should be an array whith open cases at $thisdate, but nothing > appear. > > Is it something about dates in mysql ? > > Than

Re: [PHP] Finding split points in an article for inserting ads

2011-02-16 Thread Gerardo Benitez
s in JavaScript. I can > see arguments for both sides, so I would like get opinions from others on > this tradeoff. > > -- Gerardo Benitez - www.webseficientes.com.ar Diseño web, programación, Seo

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

2010-12-07 Thread Gerardo Benitez
n > transform into > > *$result = Object::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] session variables in tmp

2010-06-08 Thread Gerardo Benitez
to write any more session 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 > wrote: > > Hi Stephen, >> >> you can try setting the session path using

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 wrote: > 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 > the

Re: [PHP] session variables in tmp

2010-06-08 Thread Gerardo Benitez
> tmp is set to drwxrwxrwt 4 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
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 wrote: >

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

2009-12-03 Thread Gerardo Benitez
where 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 wrote: > Hello everybody, > > I am pretty much stuck with a problem and I was hoping to find some help > here with you guys. > >

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

[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
> > Use the tool that PHP provides for such problems. > > http://php.net/fgetcsv fgetcsv is very useful, here a example: $num fields in line $row: \n"; $row++; for ($c=0; $c < $num; $c++) { echo $data[$c] . "\n"; } } fclose($handle); ?> -- Gerardo Benitez