묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in /home1/hosting_users/bit66/www/index.html on line 67
2013.09.24 23:34
아래 소스입니다.
무엇이 잘못 된건지 알려주시면 감사 하게습니다.^^
if(!$member[no]) {
echo "<a onfocus='this.blur()' href='javascript:;' onClick="window.open('".$_zb_url."login1.php','login','width=300,height=250');">로그인</a><a onfocus='this.blur()' href='".$_zb_url."member_join.php'>회원가입</a>";
문법 오류입니다.
echo "<a onfocus='this.blur()' href='javascript:;' onClick="window.open('".$_zb_url."login1.php','login','width=300,height=250');">로그인</a><a onfocus='this.blur()' href='".$_zb_url."member_join.php'>회원가입</a>";
여기서 echo " 로 시작했는데 안의 onClick=" 이런식으로 " 가 또 나오면 안되지요.
차라리 ' 를 쓰시거나 " 를 쓰시려면 \" 로 해주셔야 합니다.
echo "<a onfocus='this.blur()' href='javascript:;' onClick=\"window.open('".$_zb_url."login1.php','login','width=300,height=250');\">로그인</a><a onfocus='this.blur()' href='".$_zb_url."member_join.php'>회원가입</a>";
이걸로 교체해 보세요.