Home
Welcome to venetiacondo.org, a website for unit owners and residents of the
Venetia condominium. The building is centrally located at the foot of the historic Venetian
Causeway, in the up and coming Biscayne Arts Quarter of Miami.
This web site is run on a purely non-commerical, voluntary basis, with the hope of
providing something that is truely of use to the owners of the 300+ units in the
building. If you feel you have something to contribute,
please e-mail us.
|
| Recent News |
$l_connection = @mysql_connect ( $c_db_hostname, $c_db_username, $c_db_password ) or
die ( "Unable to connect to database." );
$l_db = @mysql_select_db ( $c_db_database, $l_connection ) or
die ( "Unable to select database." );
$l_sql = "SELECT n.title, date_format(n.date_added,'%d-%b-%y') news_date, n.content, u.first_name, u.last_name " .
"FROM news n, users u " .
"WHERE n.status = 1 " .
"AND u.id = n.user_id " .
"ORDER BY n.date_added DESC " .
"LIMIT 5";
$l_result = @mysql_query ( $l_sql, $l_connection ) or
die ( "Unble to read news information." );
while ( $l_row = mysql_fetch_array ( $l_result ) )
{
echo ( " \n" );
echo ( " | " . $l_row [ 'news_date' ] . ", " . $l_row [ 'title' ] . " | \n" );
echo ( " \n" );
$l_content = $l_row [ 'content' ];
if ( strlen ( $l_content) > 120 )
{
$l_content = substr ( $l_content, 0, 180 ) . ' ... (more)';
}
echo ( " \n" );
echo ( " | " . $l_content . " | \n" );
echo ( " \n" );
}
?>
|