limitphp Posted October 27, 2008 Share Posted October 27, 2008 I'm using wamp server phpadmin 5.2.6 Is there any way to get rid of the requirment of using <?php ?> Instead of just using <? ?> In other words, not requiring having to type in php all the time. Link to comment https://forums.phpfreaks.com/topic/130325-solved-get-rid-of/ Share on other sites More sharing options...
kenrbnsn Posted October 27, 2008 Share Posted October 27, 2008 "<?" is a short tag and shouldn't be used if you expect your code to work on all platforms. It is controlled by a setting in the php.ini file. The problem is that XML is also introduced with "<?" so it's hard to mix PHP & XML if you use short tags. Get used to typing "<?php" -- it's really not hard. Ken Link to comment https://forums.phpfreaks.com/topic/130325-solved-get-rid-of/#findComment-675955 Share on other sites More sharing options...
limitphp Posted October 27, 2008 Author Share Posted October 27, 2008 (long sigh)....... alright.....I'll leave it as is. thanks for the info Link to comment https://forums.phpfreaks.com/topic/130325-solved-get-rid-of/#findComment-675958 Share on other sites More sharing options...
corbin Posted October 27, 2008 Share Posted October 27, 2008 You'll type out entire scripts, but you won't type 3 letters? Damn. Just damn. Link to comment https://forums.phpfreaks.com/topic/130325-solved-get-rid-of/#findComment-676065 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.