[Overview][Constants][Procedures and functions] | Reference for unit 'pwumain' (#powtils_main) |
Source position: pwumain.pas line 135
procedure OutFF( |
const s: String |
); |
FF stands for Format and Filter.
var somemacro: string; begin // pretend we have an insecure input with < > symbols somemacro:= '<b>blue</b> <javascript><hack>'; SetWebVar('color', somemacro); OutFF('He looked at the sky, it was {$color}'); OutFF('That $color is nice.'); end.