I have a PHP Script which generates an HTML Table such as this:
This table displays the details of the Stock that was added to the Stationery.
Item | Quantity | Date
------------------------------
Pencil | 100 | 2013-02-01
Pencil | 100 | 2013-02-01
Rubber | 100 | 2013-02-02
Now, I want some client side script to display only those rows which lie between two dates. How do I do it? Please help.
Thanks.