$username isn't part of the array
That's correct. Let's change the code a little:
$get = "SELECT * FROM user WHERE username = $username";
$query = mysql_query($get, $link_id)or die("Could not select user: " . mysql_error());
$row = mysql_fetch_array($query);
$hold="INSERT INTO supp VALUES('','{$row['level']}','$username','{$row['name']}','{$row['carrN']}','{$row['mIp']}','$da', '$daT', 'thank you', 'hU')";
mysql_query($hold, $link_id)or die("Could not insert: " . mysql_error());
Are you able to identify which SQL statement caused the error now?
what do you mean by delimited
Enclosed, separated, etc. Basically, some symbol that denotes the start and/or end of a token.