[PHP] Open Source Website Flowchart and Wireframe Software?

2010-09-29 Thread Daniel Kolbo
Hello, This is not strictly a PHP question, though i do think some members that subscribe to this list might be able to answer this question. Is there an open source website flowchart and wireframe software. My google searches are not quite pulling up what I'm looking for. I would like a piece

Re: [PHP] PHP Email Question

2010-09-29 Thread Joe Jackson
Hi I am trying the following snippet as Bostjan suggested, and an email is getting sent when I submit the form however in the body of the email I am getting none of the form data in the body of the email. All I am getting is the letter 'z' ? Also in the from field of the email this is showing a

RES: [PHP] converting a mysql date value

2010-09-29 Thread Alejandro Michelin Salomon
David : Try this : $a = explode('-', '2010-01-23'); $b = array( $a[1], $a[2], $a[0] ); echo implode( '/', $b); // 01/23/2010 Alejandro M.S. -Mensagem original- De: David Mehler [mailto:dave.meh...@gmail.com] Enviada em: quarta-feira, 29 de setembro de 2010 16:12 Para: php-general As

Re: [PHP] converting a mysql date value

2010-09-29 Thread Steve Staples
http://www.w3schools.com/sql/func_date_format.asp when you do your select, "SELECT DATE_FORMAT(`field_name`,'%b %d %Y %h: %i %p') AS 'field_name'" which would yield you the field "field_name": 'Nov 04 2008 11:45 PM' would be easier to do it there, rather than in your PHP... and you can change t

Re: [PHP] converting a mysql date value

2010-09-29 Thread Adam Richardson
On Wed, Sep 29, 2010 at 3:11 PM, David Mehler wrote: > Hello, > I've got dates stored in a mysql database. The field is of type date > so the value is something like: "2010-09-29" I'm wanting to display > them as in U.S. dates as in month, day, year. I had a function that > did this, now it is no

[PHP] converting a mysql date value

2010-09-29 Thread David Mehler
Hello, I've got dates stored in a mysql database. The field is of type date so the value is something like: "2010-09-29" I'm wanting to display them as in U.S. dates as in month, day, year. I had a function that did this, now it is not working and I am perplexed as to why. Here's my echo statement:

Re: [PHP] Which PHP 5.3 documentation generators have you found?

2010-09-29 Thread Adam Richardson
On Wed, Sep 29, 2010 at 2:54 PM, a...@ashleysheridan.co.uk < a...@ashleysheridan.co.uk> wrote: > Does phpDocumenter not do the trick? I must admit, I've not tried anything > specific to 5.3 (i can imagine the namespace thing would be a major part if > the documentation) but its served me well with

Re: [PHP] Which PHP 5.3 documentation generators have you found?

2010-09-29 Thread a...@ashleysheridan.co.uk
Does phpDocumenter not do the trick? I must admit, I've not tried anything specific to 5.3 (i can imagine the namespace thing would be a major part if the documentation) but its served me well with other php5 code. Thanks, Ash http://www.ashleysheridan.co.uk - Reply message - From: "Ada

[PHP] Which PHP 5.3 documentation generators have you found?

2010-09-29 Thread Adam Richardson
Hi all, Anybody know of a documentation generator which plays nicely with PHP 5.3? Thanks, Adam -- Nephtali: PHP web framework that functions beautifully http://nephtaliproject.com

Re: [PHP] reporting spam in PHP manual?

2010-09-29 Thread Daniel P. Brown
On Wed, Sep 29, 2010 at 12:12, MikeB wrote: > Came across this entry as a user comment in the php.net manual. > > http://www.php.net/manual/en/language.exceptions.php#100089 > > Couldn't see how to report it so it could be removed. > > Maybe someone that knows how can tell me, or report it themsel

[PHP] reporting spam in PHP manual?

2010-09-29 Thread MikeB
Came across this entry as a user comment in the php.net manual. http://www.php.net/manual/en/language.exceptions.php#100089 Couldn't see how to report it so it could be removed. Maybe someone that knows how can tell me, or report it themselves? Thanks, -- PHP General Mailing List (http://www

[PHP] Re: SimpleXML/array duality (like particles & waves)

2010-09-29 Thread Erik L. Arneson
On Tue, 28 Sep 2010, Brian Dunning wrote: > I am kind of jacked here. I have a SimpleXML object that's been > converted to an array. In one of the nodes, for no reason I can see, > the array is populated differently if there is only one > than if there are multiple s. > > [...] > > In case it matt