Hi,
$dbquery['laps'] should be a single field named <i>laps</i> in your table and not your table name. thus, <i>laps</i> in your example contains a string object and not an array.
<i>$someArray</i>[] = $someVariableOrValue
is incorrect, when using the braces or brackets (or whatever you call it) "<b>[ ]</b>" there should be a some pointer or identifier inside those.
assuming that $dbquery will result to a row with multiple columns,
you probably need something like this:
$dbquery = mysql_query(... <i>your query stmt</i> ...);
$ydata = mysql_fetch_array($dbquery);
// <i>or</i>
$ydata = mysql_fetch_row($dbquery);