묻고답하기
[질문] PHP5 로 바뀌면서 달라진것들
2009.01.20 18:09
<?
echo "hello world";
?>
이렇게 하면 아무것도 안나오더라구요.
<?php
echo "hello world";
?>
해야 나온다는...
설정이 잘못된 걸까요??
왜 안되죠..........
댓글 3
-
샤릉해
2009.01.20 18:11
서버는 IIS 6 입니다. -
SOL군
2009.01.20 18:19
php.ini 설정에 있습니다 ^^ -
샤릉해
2009.01.20 18:23
그렇네요. ! 감사합니다.
;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;
; Enable the PHP scripting language engine under Apache.
engine = On; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
zend.ze1_compatibility_mode = Off; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
; NOTE: Using short tags should be avoided when developing applications or
; libraries that are meant for redistribution, or deployment on PHP
; servers which are not under your control, because short tags may not
; be supported on the target server. For portable, redistributable code,
; be sure not to use short tags.
short_open_tag = Off