[PHP] Houston PHP Users Group February Meeting Details

2006-01-22 Thread Joao Prado Maia
the design/layout development of a web application. Joao Prado Maia will present about development with CVS, a revision control system used by most of today.s open source projects. I.ll go over the details of creating a CVS repository, importing modules and start tracking changes to your files

Re: [PHP] ecTemplate

2001-09-24 Thread Joao Prado Maia
On Mon, 24 Sep 2001, Jeroen Olthof wrote: look here for a live excample http://www.millipede.nl/ectemplate And how is ecTemplate different from PHPLIB's Template system ? It looks like the same thing to me.. Joao -- João Prado Maia [EMAIL PROTECTED] http://phpbrasil.com - php com um

Re: [PHP] passing values to a javascript variable

2001-06-21 Thread Joao Prado Maia
On Thu, 21 Jun 2001, Romulo Roberto Pereira wrote: Hello! The following give me: unterminated string constant (this is a javascript error) when I execute the following: while ($row = mysql_fetch_array ($data_query_action)) { $data_data = $row[data_data]; } echo

Re: [PHP] line break

2001-04-26 Thread Joao Prado Maia
On Thu, 26 Apr 2001, Alex Piaz wrote: At 22:07 26/4/2001 -0400, you wrote: Hi all, I know how to get a line break in text. Is there a way to get a line break between the user agent string below? I would line to print in a column instead of a long row. Use \n\r concatening with your

Re: [PHP] Caller's __LINE__

2001-02-28 Thread Joao Prado Maia
On Wed, 28 Feb 2001, Christian Dechery wrote: Pass __LINE__ to the function as one of its arguments: function debuginfo($msg, __LINE__) { echo"bthe message is $msg, at line" . __LINE__ . " /bbr"; } that won't work since __LINE__ returns the exact line where it's used... so

RE: [PHP] field types

2001-01-23 Thread Joao Prado Maia
On Tue, 23 Jan 2001, Boget, Chris wrote: Never mind, I see how he did it. He runs the following query: "SELECT FIELDS FROM $tableName" Where '$tableName' is your table (obviously) and he parses the result to get all the information. Actually he did a "SHOW FIELDS FROM $tableName".