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" id="pno" value="<?php echo $pno?>"/></td`>

and some this line work

 <td width="292" bgcolor="#EDEFF4"><input name="pno" type="text" id="pno" value="<?=$pno?>"/></td>

so whats the difference between

<?php echo $pno ?> and  <?=$pno?>

Thanks

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

They're both the same, the latter is just a shorthand. The shorthand does require your PHP settings to allow it, though.

link|improve this answer
feedback

There is none.

<?= 'foo' ?>

translates to

<?php echo 'foo' ?>

But be aware:

<?= 'foo' ?>

Is a short tag syntax which can be disabled in the php.ini so sometimes you can't rely on it if the server administrator disabled it

(More information on using shorttags Are PHP short tags acceptable to use?)

link|improve this answer
feedback

You should use

<?php echo $pno; ?>


Both options are supposed to give the same result. However, if you would like to use the latter option, your webserver must have the option short_open_tag turned on. It is a compatibility issue.

link|improve this answer
While I do agree with you your answer doesn't actually answer the OP's question – Belinda Mar 23 '11 at 16:12
@Belinda: Thank you, I have updated my answer. – Michiel Pater Mar 23 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

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