たとえば、期間を保持する無効な入力がありますが、ユーザーにわかりやすい形式で表示したいと考えています。select 要素と同様に、in を含むオプションは、表示されているものとは異なる値を保持できます。
<select><option value=1>Label is there</option></select>
入力でできますか?
何かのようなもの
<input type='text' value='<?=$time?>' label='<?=date('c',$time);?>' />
Ps: 私はプレースホルダーを求めていません。
現在やっている
<label for="app_time">Time</label>
<input type="hidden" value="2013-04-27 15:40:00" name="app_time">
<input type="text" value="27 Apr 13, 03:40" Disabled>
他の方法はありますか?