First thing I notice in your code is that you're not handling arrays properly. You shouldn't reference arrays with indeces inside a string unless you use braces, but I've simply found it easy to separate the two, such as:
echo ' <b>IN:</b> ' . $var_in[$i$b] . ' ';
Second thing I notice is that "$i$b" has no meaning to PHP. Actually, it throws an error.
What are you trying to do here? I see the values for $i and $b are both 1, so are you trying to reference the 11th index of $var_in (glueing $i and $b together as if they were a string) ? If so, you need to use a period to concatenate the two together, much like you had when you used the $t variable:
echo ' <b>IN:</b> ' . $var_in[$i.$b] . ' ';