Forum Moderators: coopster
while(($mn,$mp,$sn,$ma) = $moves->fetchrow_array) {
$mv[$mn -1]->[$sn -1] = $mp . '¦'. $ma;
}
and wrote this but it's not exactly right:
while(list($mn,$mp,$sn,$ma) = mysql_fetch_row($moveresult)) {
$lmn =$mn -1;
$lsn = $sn - 1;
$joined=$mp.'¦'. $ma;
$mv[$lmn]->$lsn = $joined;
}
any help would be greatly appreciated.
Blake Binkley