hi i work a lot in mixed html and php and most time i just want solid html with a fet php variables in it so my code look like this
<tr><td> <input type="hidden" name="type" value="<?php echo $var; ?>" ></td></tr>
wich is quite crap isnt there little code something like:
<tr><td> <input type="hidden" name="type" value="$$var" ></td></tr>
but then working?
this is possible to but you get stuck with the ""es (you have to replace them all with '') and the layout is gone
echo "<tr><td> <input type="hidden" name="type" value="$var" ></td></tr>"
anything better? thanks Matthy