I'm intending to just put a long preset array in the php file, like
Code: Select all
$question[1]="blah blah";
$question[2]="guh guh";Is there a better method? Or is the above handled so fast I may as well not bother thinking about it?
Code: Select all
$question[1]="blah blah";
$question[2]="guh guh";Code: Select all
$array = array( 'key' => 'value' );
// or
$array = array();
$array['key'] = 'value';