I want to create a menu which is specific to each user. Now, i have the correct form which writes the data to a database, and from there I take the data to display it with ChronoConnectivity. I make it user specific with the following WHERE clause:
But my next issue is how to display it as a menu, that redirects to five forms. the forms are the same, the only thing that's different is the text label of the menu items which should be read from the db.
Thanks in advance!
BTW if someone wants to pull this off with payment, PM me, i'm open to suggestions and have some more projects down the road.
WHERE cf_user_id = '<?php
$user =& JFactory::getUser();
echo $user->get('id') ;
?>'
But my next issue is how to display it as a menu, that redirects to five forms. the forms are the same, the only thing that's different is the text label of the menu items which should be read from the db.
Thanks in advance!
BTW if someone wants to pull this off with payment, PM me, i'm open to suggestions and have some more projects down the road.