Try changing the way you pass the parameters, slashes are not
good seperators. Use periods to seperate the categories. you could
use the split function and use each array value to search your db.
Here is some code that will insert multiple values into a db.
<%
calltime = (request.form("ct[]"))
servname = (request.form("sn[]"))
inputtime = (request.form("now_time[]"))
laptopid = (request.form("laptop[]"))
calltime_array = SPLIT(calltime,",")
srvrname_array = SPLIT(servname,",")
inputtime_array = SPLIT(inputtime,",")
laptopid_array = SPLIT(laptopid,",")
For i = LBound(srvrname_array) TO UBound(srvrname_array)
Dim objRS, objComm
Set objComm = Server.CreateObject("ADODB.Command")
objComm.ActiveConnection = MM_lplconnect_STRING
objComm.CommandText = "INSERT INTO call_logs(serverID,
call_times, log_time, laptopIP) Values ('" & srvrname_array(i)
& "', '" & calltime_array(i) & "', '" &
inputtime_array(i) & "', '" & laptopid_array(i) & "')"
objComm.Execute
Next
%>