Is not possible. What it could look like is:
$array = array();
$array[1] = array(
'title'=>'Title One name',
'champion'=>'Jeff'
'contender1'=>'kevin'
'contentder2'=>'brian'
'contender3'=>'will'
);
Or even like this if you want:
$array = array();
$array[1] = array(
'title'=>'Title One name',
'data'=>array(
'champion'=>'Jeff',
'contender1'=>'kevin',
'contentder2'=>'brian',
'contender3'=>'will'
)
);
For now, do a print_r($query->result); so we can see what you DO have. However, it'll probably be easiest to just use the result as it comes out of the DB, and modify your code that USES it.