echo 안에 함수 사용방법
본문
echo'' 안에 $g5_cf4 이거 않 먹히는데 어케하면 되나여 ?
위에 이미 사용햇구요
$g5['cf_4'] = $config['cf_4'];
$g5_cf4 = $g5['cf_4'];
<?php
if($member['mb_level']==2){
echo '<input type="radio" name="wr_2" value="" checked="">$g5_cf4 ';<---여기서 않먹힘
}
?>
<?php
if($member['mb_level']==3){
echo '<input type="radio" name="wr_2" value="<?php echo $g5_cf5; ?>" checked=""><?php echo $g5_cf5; ?> ';
}
?>
답변 3
홑따옴표(') 안애서 변수는 해석되지 않습니다.
'<input type="radio" name="wr_2" value="" checked="">' . $g5_cf4; 처럼 연결자(.)을 사용하시면 됩니다.
홑따옴표(') 안애서 변수는 해석되지 않습니다.
'<input type="radio" name="wr_2" value="" checked="">' . $g5_cf4; 처럼 연결자(.)을 사용하시면 됩니다.
<?php echo '<input type="radio" name="wr_2" value="'.$value.'" checked="">'; ?>
답변을 작성하시기 전에 로그인 해주세요.