The shorttags tag has no wiki summary.
101
votes
19answers
29k views
Are PHP short tags acceptable to use?
Here's the info according to the official documentation:
There are four different pairs of
opening and closing tags which can be
used in php. Two of those, <?php ?>
and <script ...
12
votes
5answers
12k views
How to enable PHP short tags?
I have a web application on a Linux server which starts with <?
I needed to copy this application to a windows environment and everything is working fine except that an SQL statement is being ...
5
votes
8answers
731 views
Why do almost all PHP framework use “<?php echo … ?>”
The PHP short tag <?= $var ?> has been deprecated for a while.
Almost all PHP frameworks use the long form <?php echo $var ?> (e.g., symphony, Yii, Kohana)
Smarty is a famous PHP ...
3
votes
4answers
71 views
PHP setting to enable <?=
Hey guys, just upgraded my WAMP.
A lot of my code used to use <?=$variable?> for a quick echo statement. Does anyone know the php setting to turn this back on?
3
votes
5answers
77 views
Why does <?=?> work on one computer but not another?
When I write
<?=?>
in my PC it's not working,but it's work in another PC !!! why ??? :(
for example :
<?php
$courses = CourseManager::findAll();
?>
<h3>Course List</h3>
...
2
votes
3answers
138 views
Why does Symfony recommend turning php_short_tags off
I'm installing Symfony2 framework for the first time and the web config screen says to turn php short tags off. Is there any reason for this besides the arguments that in conflicts with xml or server ...
2
votes
4answers
104 views
Prevent XslCompiledTransform from using short tags
I am using XslCompiledTransform() to convert an XML file to HTML. Is there a way I can prevent it from using short tags.
e.g.,
<span></span> <!-- I want this even if content empty ...
1
vote
3answers
80 views
difference between <?php echo $pno ?> and <?=$pno?>
hello please me out regarding a small line of code . i want to get the value in the textbox
sometime this line works
`<td width="292" bgcolor="#EDEFF4"><input name="pno" type="text" ...
0
votes
1answer
66 views
Add customfield inside a plugin shorttag
I'm using a wordpress plugin shorttag which needs one field to load through a custom field. I want to know how I can echo the customfield inside the plugin php code. I'm a beginner in php so can't ...
0
votes
1answer
146 views
WordPress ShortTag Custom Variable
I like to have a whole website build in wordpress. All through the site there will be telephone number, address, some link here and there...
I like to be able to defin variable shorttag in the admin ...
0
votes
1answer
72 views
jquery shorttag issue
<script>
$("#commentInfo").html("I m here");
</script>
if I have a standard start/end tag, then jquery is fine
<span id='commentInfo' class="commentInfo"></span>
Testing
...
0
votes
2answers
72 views
PHP Short tags - Are they slower than regular syntax?
Is writing
<?=$variable?>
slower than
<?php echo $variable; ?>
In other words, what does the server interpret faster?
0
votes
6answers
721 views
How do i convert php short tag to full one
I am to edit a project of another guy who used php short tag everywhere in his script. I have short tag disabled in my server. I think converting all the short tags instead of enabling short tag in my ...
0
votes
1answer
153 views
“Compiling” content with short tags to var, without eval()
To start off, let me clear the air by saying we are aware of the dis/advantages to using short tag syntax in PHP. That is not what this question is about.
Is there a way to "include" a file ...
0
votes
3answers
3k views
enable short open tag without php.ini file
can i enable short open tag with programming without touching any configuration file
-2
votes
1answer
1k views
php short tags REALLY being deprecated in php6? [closed]
Possible Duplicate:
PHP6: Is short_open_tag removed or deprecated or neither?
I've searched here, php.net, the interwebs, et al.
I can find reports from reliable sources — straight from ...