Re: [PHP] Need Idea to make Backup

2010-01-14 Thread haliphax
On Thu, Jan 14, 2010 at 5:45 AM, Ashley Sheridan wrote: > On Thu, 2010-01-14 at 12:32 +0100, Jens Geier wrote: > > > "Ashley Sheridan" schrieb im Newsbeitrag > > news:1263463572.5952.71.ca...@localhost... > > > On Thu, 2010-01-14 at 10:12 +0100, Jens Geier wrote: > > > > > >> "Ashley Sheridan" s

Re: [PHP] strtotime

2010-01-14 Thread haliphax
On Thu, Jan 14, 2010 at 2:53 PM, Adam Richardson wrote: > I've not read this, but if the first valid date is Jan. 1st, 1970, then > passing that date back in the case of errors would lead to ambiguity. Is > it > a valid date or is it an error. Passing back the date of the day just > before (in t

Re: [PHP] Appalling Dreamweaver performance

2010-02-05 Thread haliphax
On Fri, Feb 5, 2010 at 3:59 PM, Lenin wrote: > Try the NetBeans then > Personally, I've found that Programmer's Notepad 2 is a pretty capable editor, and has some nice features such as auto-closing elements when working with markup languages (HTML, XML, XSL, XHTML, etc.). http://www.pnotepad.or

Re: [PHP] OpenID

2010-02-05 Thread haliphax
On Mon, Feb 1, 2010 at 9:54 PM, Michael A. Peters wrote: > Daevid Vincent wrote: > >> >> >>> -Original Message- >>> From: Al [mailto:n...@ridersite.org] Sent: Monday, February 01, 2010 >>> 12:09 PM >>> To: php-general@lists.php.net >>> Subject: [PHP] OpenID >>> >>> This is a bit off subje

Re: [PHP] Linux ERD software

2010-02-24 Thread haliphax
Dia is also a superb diagramming software, though I don't think it generates any SQL for you when it's said and done. There are versions for several operating systems (including Linux AND Windows). // Todd

Re: [PHP] PHP: inexplicable behaviour of pre- and post-increment operators

2010-03-03 Thread haliphax
> On Fri, Feb 26, 2010 at 11:01 PM, wrote: > > while ($i < $j) { $b[$i] = $a[$i++]; } B. > > > > You get $b[0] = $a[1], and so on (as you would expect). > Wouldn't that be $b[0] = $a[0], with the value of $i being 1 *after* the statement was finished executing? You used a post-decrement

<    1   2