컴퓨터잡담

php에서 script로 변수 전달 후 html에 div로 내용 출력하기

by 디케 posted Apr 01, 2010
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

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>