Can I hard code this line in index.php:
.itemTitle(ID_ITEM).
With the actual item name and then make 5 different pages (index2.php,
etc.) to use as my iFrame source? Or can I somehow call from the
parent HTML page the value (name) and stick it in there on the fly?
Thanks - great app so far - just looking forward to nailing it all
down.
You can make the calender show a specific item by defining it in the
url (if you are using an iframe)
like this:
calendar.php?id_item=23
Alternativley if you are doing a php installation to embed the
calendar directly in your page, you can add this to your code before
you actually include the calendar code:
$_GET[id_item]=23;
Just replace "23" with your item id :)
Chris