dbms_primeidc/extdbms/writeable/cache/dbms.client.update_form_706eff467b68710c11c04fbdfa94cf3ec18e6491.bladec
2025-04-23 16:34:53 +09:00

12 lines
504 B
Plaintext

<?php if($client): ?>
<form method="post">
<input type="hidden" name="client_code" value="<?php echo \htmlentities($client->getClientCode()??'', ENT_QUOTES, 'UTF-8', false); ?>">
<table>
<tr>
<th width="18%">비&nbsp;&nbsp;&nbsp;&nbsp;고</th>
<td width="72%"><textarea rows="7" cols="120" name="msg"><?php echo \htmlentities($client->getNote()??'', ENT_QUOTES, 'UTF-8', false); ?></textarea></td>
<td width="10%"><input type="submit" value="저장" /></td>
</tr>
</table>
</form>
<?php endif; ?>