4
I need to send two values per parameter to another page, however value select tag only sends one... How could I send two?
Follows the code:
<option value="<?php echo $data->format("d/m/Y"); ?>">
<?php echo $data->format("d/m/Y").' às 14:15'; ?>
</option>
Maybe you need an attribute
multiple
no select. Can you explain better what you want to do? give examples pf.– Sergio
For example, I am selecting that option there that is showing on the screen the date and time together, like '01/12/2014 at 14:15', but in the value field I can only send the date...
– Alceu