Note that there are some explanatory texts on larger screens.

plurals
  1. USLeo
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COi'm not completely sure what you are trying to do. Just to sum it up. You have a couple of options that you want to mark before submitting the form. If that is what you want to achieve, then there are several options. **1)** you can submit everything in real-time via ajax to a basket. **2)** you can use checkboxes (or some other (hidden) input that carries a value when it was checked / selected) **3)** add some kind of `data-selected="true"` to your tag and then disable all other inputs that don't have this attribute... there are many options... it depends what you want to do...
      singulars
    2. COyou're welcome! I'm happy i could help. Yeah the `===` also checks on the data-type... so it's safer if you don't just want to compare 2 strings (words) but actually want to validate if a expression is `true` or `false` - then always use `===`. maybe you want to look into [type-juggling](http://php.net/manual/en/language.types.type-juggling.php) and [cast boolean](http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting)
      singulars
    3. COI know this question isn't about style and maybe that's not even your own code you're working on there, but it is cleaner to just close the php tags write some html and open the php tags again instead of echo-ing tons of lines. e.g. `... ?> <p>some html here and output a <?php echo $variable; ?> and more html there </p> <?php ...`. And there is a lot of (deprecated) HTML-styling where you should actually use CSS... no offence, just some advice :)
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload