Please help me out regarding a small line of code. I want to get the value in the textbox.
Sometimes this line works:
<td width="292" bgcolor="#EDEFF4"><input name="pno" type="text" id="pno" value="<?php echo $pno?>"/></td>
and sometimes this line works:
<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?>