Intro :I have quite a few single friends who are working professionals with busy lives. They depend heavily on their cell phones as a lifeline to their social lives. As a result, I have been asked the same question many times over and over again. Between Android and the iPhone, which is better to access my online dating profile, social networking sites and generally is the best smart phone OS?
Well, there really is so simple answer to that question. It all comes down to personal preference at the moment because they both similarly can handle all your smart phone needs. You can make calls, text, access social networking sites and utilize your online dating profile on either the Android or iPhone without a problem. On the other hand, both the iPhone and the Android seem to have security issues that need to be addressed as well. In my opinion though, I think it’s a little too premature to tell which OS will prevail in the smart phone arena. Maybe both can survive and co-exist with each other as competitors, which of course brings competition and with competition breeds innovation while keeping costs low. This is the scenario I see for the future with at least two or maybe even three major players in the market.
Inti:
Salah satu cara yang usability untuk memilih tanggal adalah menggunakan ComboBox karena user dapat langsung memilih berdasarkan pilihan yang sudah disediakan didalam ComboBox.Dengan cara tersebut user dapat terhindar dari kesalahan penulisan format tanggal apabila diinputkan dalm ebntuk TextBox biasa.
Scrip tanggal.php
<form method=get action=update.php>
<?php
$nama_bln=array(1=> "Januari", "Februari", "Maret", "April", "Mei",
"Juni", "Juli", "Agustus", "September",
"Oktober", "November", "Desember");
echo "<select name=tanggal>
<option value=0 selected>Tgl</option>";
for ($tgl=1; $tgl<=31; $tgl++){
echo "<option value=$tgl>$tgl</option>";
}
echo "</select> ";
echo "<select name=bulan>
<option value=0 selected>Bulan</option>";
for ($bln=1; $bln<=12; $bln++){
echo "<option value=$bln>$nama_bln[$bln]</option>";
}
echo "</select> ";
$thn_skrg=date("Y");
echo "<select name=tahun>
<option value=0 selected>Tahun</option>";
for ($thn=2000;$thn<=$thn_skrg;$thn++){
echo "<option value=$thn>$thn</option>";
}
echo "</select>";
?>
</form>
Jalankan :