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>
<table>
    <tr><th>Name</th></tr>
 <?php   foreach ($courses as $c){
?>
    <tr>
        <td><?=$c->getName()?></td></tr>
  <?php } ?>

</table>

or this, it's too simple no ? :)

<?= expression ?>

This is a shortcut for

<? echo expression ?>

or

<?php
$i ="test";
?>

<h1><?=$i?></h1>

Thanks for your advice :)

link|improve this question

75% accept rate
Stupid question, but is the same version of php running on both machines? – Wil Aug 17 '10 at 11:35
Is PHP even installed on the second machine? – Chris Aug 17 '10 at 11:35
@Wil, Dear Wil I'm rookie, Please do not mock! – Mike Redford Aug 17 '10 at 11:41
1  
Hi Mike, not a mock, I was saying that I might be asking a silly question – Wil Aug 17 '10 at 12:33
OK Dear Wil, Thanks , Was certainly a misunderstanding. ;) – Mike Redford Aug 17 '10 at 12:37
show 1 more comment
feedback

5 Answers

up vote 5 down vote accepted

You don't have the short tags enabled.

To enable them look for short_open_tags in php.ini. Change it to "On" and restart Apache.

link|improve this answer
feedback

PHP's short_open_tag options isn't the same on different servers. If possible avoid to use these type of opening tags.

If you want to be sure short open tags are available, set it yourself with ini_set.

link|improve this answer
feedback

Check short_open_tag in php.ini

link|improve this answer
feedback

Because these shortcuts can be turned off in the php.ini. The option is called short_open_tags.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.