php-db | 2004071
Date: 07/02/04
- Next message: Karen Resplendo: "[PHP-DB] Date problem: data is current as of yesterday"
- Previous message: John W. Holmes: "Re: [PHP-DB] SELECT problem between MySQL 3.23 and MySQL 4"
- In reply to: Bob Lockie: "[PHP-DB] new row object"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Bob Lockie wrote:
> I use $row = fetch_row_object, array_push($row) and I want to manually
> insert a row at the end of my array to indicate if there are more rows.
>
> Is there a way to create a row object?
class row
{
var $morerows = 'Yes';
}
$more = new row;
array_push($more);
about all there is too it, although I'm sure there is a better way to do
whatever you're doing if you explained it more.
-- ---John Holmes...Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Karen Resplendo: "[PHP-DB] Date problem: data is current as of yesterday"
- Previous message: John W. Holmes: "Re: [PHP-DB] SELECT problem between MySQL 3.23 and MySQL 4"
- In reply to: Bob Lockie: "[PHP-DB] new row object"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

