Thanks Barand,
I took your second suggestion - "You could update all the other fields then query the file to get the logdetails. Concatenate in php then update with the new contents."
It is working great. Here is my code just in case anyone else is having this problem as well:
//This code concatenates the new log information to the bottom of the log information that is already in the database.
$querylog = "SELECT logdetails from tblIssues Where issuenumber = '$number'";
$resultlog = mssql_query($querylog);
$log = mssql_fetch_row($resultlog);
$addlog = "$log[0] \n$worklog";
//This code updates all the variables of the record in the database to the values the user has changed on the web page.
$query = "UPDATE tblIssues SET priority = '$priority', firstname = '$first', lastname = '$last', phone =
'$phone', email = '$email', issuetype = '$type', subject = '$subject', comment = '$comment', status = '$status', assignedto =
'$assignto', assigntime = '$assigntime', logdetails = '$addlog' WHERE issuenumber = '$number'";
If anyone sees a problem with this code, definately let me know.
thanks