Re: [PHP-DB] Where did my Hard Returns go?

2006-03-01 Thread Jeff Broomall

As for an update...

Through trial-and-error, I've determined the following don't work...

Attempt 1:

nl2br($result) = mysql_query ($query); // Run the query.

Attempt 2:

$result = mysql_query ($query); // Run the query.
$result = nl2br($result)

Attempt 3:

$bg = '#ee'; // Set the background color.
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$bg = ($bg=='#ee' ? '#ff' : '#ee'); // Switch the
background color.
echo nl2br( 'tr valign=top bgcolor=' . $bg . '
 td align=lefta href=edit_task.php?id=' .
$row['task_id'] . 'Edit/a/td
td align=left' . $row['task_task_no'] . '/td
td align=left' . $row['icaotask_no'] . '/td
td align=left' . $row['task_usaction'] . '/td


/tr
');

Now, attempt 3 kind of worked.  It did insert the \n but it almost
doubled the size of the table.  IOW, instead of 13 rows (the correct
number of rows), it stated the table off with 12 empty rows
(alternating between the two color shades) and then displayed the 13
correct rows.

Perhaps this was the proper placement of nl2br but there is something
in the other code that screwed up the presentation???

Thanks.

Jeff
- Original Message - 
From: Jeff Broomall [EMAIL PROTECTED]

To: php-db@lists.php.net
Sent: Wednesday, March 01, 2006 9:00 AM
Subject: [PHP-DB] Where did my Hard Returns go?


Good morning.

I created an edit_task page that allows the user to edit tasks for the
database.  I entered some text and used some hard returns.

But when I went to view the tasks (using a PHP script if it matters),
the hard returns didn't take.  None of em.  All of the text is
jumbled together.

I checked within the MySQL database and noticed the Hard Returns show in the 
database (at

least while using phpMyAdmin).

Must have something to do with PHP?  Where did I go wrong???

Thanks.

--Jeff 


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Where did my Hard Returns go?

2006-03-01 Thread Dwight Altman
Put nl2br() around the field in the table that you saved newlines
nl2br($row['theTableFieldWithTheNewlines'])

maybe
td align=left' . nl2br($row['task_usaction']) . '/td

-Original Message-
From: Jeff Broomall [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 01, 2006 10:34 AM
To: Jeff Broomall
Cc: php-db@lists.php.net
Subject: Re: [PHP-DB] Where did my Hard Returns go?

As for an update...

Through trial-and-error, I've determined the following don't work...

Attempt 1:

nl2br($result) = mysql_query ($query); // Run the query.

Attempt 2:

$result = mysql_query ($query); // Run the query.
 $result = nl2br($result)

Attempt 3:

$bg = '#ee'; // Set the background color.
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
 $bg = ($bg=='#ee' ? '#ff' : '#ee'); // Switch the
background color.
 echo nl2br( 'tr valign=top bgcolor=' . $bg . '
  td align=lefta href=edit_task.php?id=' .
$row['task_id'] . 'Edit/a/td
 td align=left' . $row['task_task_no'] . '/td
 td align=left' . $row['icaotask_no'] . '/td
 td align=left' . $row['task_usaction'] . '/td


 /tr
 ');

Now, attempt 3 kind of worked.  It did insert the \n but it almost
doubled the size of the table.  IOW, instead of 13 rows (the correct
number of rows), it stated the table off with 12 empty rows
(alternating between the two color shades) and then displayed the 13
correct rows.

Perhaps this was the proper placement of nl2br but there is something
in the other code that screwed up the presentation???

Thanks.

Jeff
- Original Message - 
From: Jeff Broomall [EMAIL PROTECTED]
To: php-db@lists.php.net
Sent: Wednesday, March 01, 2006 9:00 AM
Subject: [PHP-DB] Where did my Hard Returns go?


Good morning.

I created an edit_task page that allows the user to edit tasks for the
database.  I entered some text and used some hard returns.

But when I went to view the tasks (using a PHP script if it matters),
the hard returns didn't take.  None of em.  All of the text is
jumbled together.

I checked within the MySQL database and noticed the Hard Returns show in the

database (at
least while using phpMyAdmin).

Must have something to do with PHP?  Where did I go wrong???

Thanks.

--Jeff 

-- 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Where did my Hard Returns go?

2006-03-01 Thread Philip Pryce
You can't assign a value to a function!
that is actually incorrect, the list(); function assigns a value to a
functions vars.

--
~Philip Pryce


Re: [PHP-DB] Where did my Hard Returns go?

2006-03-01 Thread Micah Stevens

list() is a language construct. 

On Wednesday 01 March 2006 9:18 am, Philip Pryce wrote:
 You can't assign a value to a function!
 that is actually incorrect, the list(); function assigns a value to a
 functions vars.

 --
 ~Philip Pryce

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Where did my Hard Returns go?

2006-03-01 Thread Dwight Altman
Like array(), this is not really a function, but a language construct.
list() is used to assign a list of variables in one operation.

http://php.he.net/manual/en/function.list.php

Watch out for those language constructs which look to us like functions.
Probably related to some folks preferring to write:
if (...
instead of
if(...

-Original Message-
From: Philip Pryce [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 01, 2006 11:19 AM
To: php-db@lists.php.net
Subject: Re: [PHP-DB] Where did my Hard Returns go?

You can't assign a value to a function!
that is actually incorrect, the list(); function assigns a value to a
functions vars.

--

~Philip Pryce

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php