Hello,
if i use a HTML-Form with a "multi checkbox set" i have the same issue like in php:
http://www.wastedpotential.com/html-multi-checkbox-set-the-correct-way-to-group-checkboxes/
When i use the brackets like in the description i get no date when i use "identified by"
Sample of my HTML-Part:
<fieldset>
<table>
<tr><td><label for="fGrund"><strong>Anlagegrund: *</strong></label></td>
<td><input type="checkbox" class="checkbox" id="fPote" name="Grund[]" value="P" /> <i>(Lieferant mit großem Potential)</i><br />
<input type="checkbox" class="checkbox" id="fAuEr" name="Grund[]" value="E" onClick="toggle('fAuEr', 'fAuErVol')" /><i> (Auftrag in Erwartung)</i> <strong> ca. Volumen: </strong> <input id="fAuErVol" name="AuErVol" value="" size="9" maxlength="9" disabled class="required" /><br />
<input type="checkbox" class="checkbox" id="fAuVo" name="Grund[]" value="V" onClick="toggle('fAuVo', 'fAuVoVol')" /><i> (Auftrag vorliegend)</i> <strong> ca. Volumen: </strong> <input id="fAuVoVol" name="AuVoVol" value="" size="9" maxlength="9" disabled class="required" /><td></tr>
</table>
</fieldset>
<fieldset>
Sample of the Cobol-Part:
01 io-form is external-form
identified by "v4/LiForm".
03 f-mod pic x(20) is identified by "mod".
03 f-tstamp pic x(16) is identified by "tstamp".
03 f-sgid pic x(8) is identified by "sgid".
03 f-Grund pic x(10) is identified by "Grund".
03 f-AuErVol pic 9(9) is identified by "AuErVol".
03 f-AuVoVol pic 9(9) is identified by "AuVoVol".
give it a chance to receive the checkbox-array with "is identified by".
Or is my only chance to use the "C$GETCGI" Routine?
When i use this Routine, are the brackets needed?
David



