Wednesday, August 08, 2007

PHP supports an alternative syntax for the various control structures.

Way 1

if ($check == 0) {
echo 'True!';
} else {
echo 'False!';
}
?>

Way 2

if ($check == 0):
echo 'True!';
else:
echo 'False!';
endif;
?>

Sakila

The official MySQL logo is a dolphin named Sakila.

Friday, August 03, 2007

ERROR 2006 (HY000) at line 1: MySQL server has gone away

When i tried to import data to MySQL through large SQL file (4.71MB), i got the above error. To overcome this issue we need to add the below option in my.ini file of MySQL.

max_allowed_packet=16M

Restart MySQL service.