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