Checkbox dizi seri, aynı zamanda off-değeri ile onay kutularını olsun

0 Cevap php

I was wondering if this is possible. The serialize-string will be inserted in a mySQL-database, so it would be fine if all checkboxes would be inserted and not only the ones that is ticked(on).

Bu kutulardan biri için veritabanı sütununda yapmak, ve if / else-deyimi kullanmak mümkündür:

if(isset($_GET['checkbox'])) {
                  // It's checked!
         }
         else {
                  // not checked!
         }

ama onun biraz unappropriate ...

0 Cevap