Hello,
Was thinking of doing a easy way to load different things
I make a few buttons, which are going to do this:
Button 1 -> Load Product list 1.
Load product list 1 (run this script) -> <?php products(); ?>
When you press button 2, I want it to unload <?php products(); ?>
and load <?php others(); ?>
When I press button 1 again, I want it to unload <?php others(); ?>
and load <?php products(); ?>
If you understand what I mean?
Is this possible to do with buttons and in a easy way without changing the whole file, just a few lines of script to make it work ?