php에서 script로 변수 전달 후 html에 div로 내용 출력하기
html소스보기로 쉽게 노출될 수 있는 내용을 숨기기 위한 간단한 전략.
뭐 내용알면 다 빼내가겠지만.. ^^;;
<?
$cont = "바부들아~";
?>
<html>
<head>
<script type="text/javascript">
function changeMsg(){
document.getElementById("cont").innerHTML="<?=$cont?>";
}
</script>
</head>
<body>
<div id="cont" style="font-size:12px;text-decoration:none;"></div>
</body>
</html>