$tmp isn't defined yet, so can't append to it's self.
(no .= )
$tmp = "ID : $row->ID \n";
> Two questions?
> First why am I getting undefined variable tmp , yet it works
> Second how would I insert data into this table?
> $db_table = 'log';
> $conn = mysql_connect($db_host,$db_user,$db_pas
Two questions?
First why am I getting undefined variable tmp , yet it works
Second how would I insert data into this table?
ID \n";
$tmp .= "Base : $row->Base \n";
$tmp .= "Date_and_Time : $row->Date_and_Time \n";
$tmp .= "Event_Type : $row->Event_Type \n";
$tm