Hi Nascarjunky,
Please do not write to me in private to look at your reply. I usually revisited the threads I post in, like most people that try and answer questions. This is a global forum, and as such, people will not always get back to you within minutes: They might be asleep, at work or having dinner. In general: Having a life.
With regards to your question.
I am assuming you have a table with columns:
id : Unique autonumber field
name : Name of the driver
salary : Salary of driver
If you have a form with checkboxes. This value of the checkbox is posted to the processing script, right?
So if you take the checkbox, and have this:
echo "
<input type='checkbox' name='driver[$driver]' value='$driver . $salary'>$driver.$salary";
You are posting: $driver . $salary' to the next page (so John3600). This is really hard to use, as you cannot search for john3600 in your database (Well.. you could but..).
Much easier is it to take your driver identifier column. If you use this as value, you can on the processing page just get the driver from the database again:
e.g., select * from TABLE where id = $POSTED_VALUE