I understand the following script is for building a database table in MySQL, but does anyone know what are the functions of the <<< in line 3 and * in lines 4 & 10?
Code:
<?php $sql_file=<<<SQL_FILE DROP TABLE IF EXISTS `table_name`;* CREATE TABLE IF NOT EXISTS `table_name` ( `id` int(11) NOT NULL auto_increment, `name` varchar(250) default NULL, `address` varchar(250) default NULL, PRIMARY KEY (`id`) );* SQL_FILE; ?>
Comment