自習用の小さな問題です。助けてください
データのチェックボックスを選択できないのはなぜですか?何が問題ですか?
<?php<br /><br />mysql_connect('localhost','root','root');<br />mysql_select_db('ceshi');<br />mysql_query('set names utf8');<br /><br />$sql="select * from test where username='小丁'";<br />$result=mysql_query($sql);<br />$row=mysql_fetch_assoc($result);<br /><br /><br />$a=$row['love'];<br />$arr=explode('|', $a);<br /><br />$ah=array('打麻将','看电影','英雄联盟','睡觉');<br /><br />?><br /><br />用户名:<input type="text" name="username" value="<?php echo $row['username'] ?>"/><br><br /><br />爱好:<?php <br /> for ($i=0;$i<count($ah);$i++):<br /> $sled='';<br /> if(in_array($ah[i],$arr)){<br /> $sled='checked';<br /> }<br /><br /> ?><br /><br /> <input type="checkbox" <?php echo $sled ?>><?php echo $ah[$i] ?><br /><br /> <?php<br /> endfor;<br /> ?><br />-----解決策のアイデアを教えてください。 -- --------------------