컴퓨터잡담

자바스크립트 변수를 php로 옮기기

by 디케 posted Feb 03, 2010
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

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

자바스크립트 변수를 php로 옮기기

document.write

HTMLDivElement


자바스크립트의 변수를 php 옮기는 방법에 고심을 하고 있다가

옮기는 방법을 인터넷을 통해 알게 되었습니다.


우선 아래의 링크주소로 확인해보면


http://okjungsoo.tistory.com/tag/document.write


출처: Insert in place without document.write via Simon Willison’s Weblog


출력할 수 있다는 것을 알수 있습니다.


<?

$Roomidx = '<script>document.write(변수);</script>';

echo $Roomidx;

?


<?

$Roomidx = '<scrip type="text/javascript" id="translation" src="syndication.js"></script>';

echo $Roomidx;

?


이렇게 하면 $Roomidx로 변수를 옮길 수 있습니다.