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. Quote Link to comment 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 Quote Link to comment 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 Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.