Hi,
Do we have an existing way to get a list, just separated by carriage returns, of all of the INPUT components from a source file?
(Not from the website, but just from the html/php code. A file or a string).
So from a form that includes these rows:
<tr>
<td>
<br>
<input type = "text" name = "nme_organization_name" id = "id_organization_name" value = "<?php echo $organization_name;?>" required >
</td>
</tr>
<tr>
<td>
<label for="id_submitted_by"><b>Submitted By</b></label>
</td>
<td>
<input type = "text" name= "nme_submitted_by" id = "id_submitted_by" value = "<?php echo $submitted_by ; ?>" required >
</td>
</tr>
<tr>
<td>
</td>
<td align = "left">
<input type= "button" name="nme_delete_org_record" class = "bt_standard_button" value = "Delete" id = "id_delete_org_record" >
</td>
</tr>
(Note that sometimes there is a space between name, =, and the quote ; and sometimes not.)
, B4J would generate this list:
nme_organization_name
nme_submitted_by
nme_delete_org_record
Do we have an existing way to get a list, just separated by carriage returns, of all of the INPUT components from a source file?
(Not from the website, but just from the html/php code. A file or a string).
So from a form that includes these rows:
<tr>
<td>
<br>
<input type = "text" name = "nme_organization_name" id = "id_organization_name" value = "<?php echo $organization_name;?>" required >
</td>
</tr>
<tr>
<td>
<label for="id_submitted_by"><b>Submitted By</b></label>
</td>
<td>
<input type = "text" name= "nme_submitted_by" id = "id_submitted_by" value = "<?php echo $submitted_by ; ?>" required >
</td>
</tr>
<tr>
<td>
</td>
<td align = "left">
<input type= "button" name="nme_delete_org_record" class = "bt_standard_button" value = "Delete" id = "id_delete_org_record" >
</td>
</tr>
(Note that sometimes there is a space between name, =, and the quote ; and sometimes not.)
, B4J would generate this list:
nme_organization_name
nme_submitted_by
nme_delete_org_record