ma falta el ? en el titulo
he hecho de diferentes maneras pero no me sale
Código HTML:
Ver original<form action="formulario.php" method="post"> <?php
define('A', 100);
?>
<td align="center"><input type="text" name="[HIGHLIGHT="PHP"]<?php A ?>
" size="3" maxlength="3" value="
"/></td>
</tr>
<tr>
<td colspan="8" align="center"><input type="submit" value="Submit Order"/></td>
</tr>
</table>
</form>[/HIGHLIGHT]
Código PHP:
Ver original<?
$a = $HTTP_POST_VARS['A'];
echo $a.' a<br/>';
?>