Simple Block to show form data
Permalink
checking to see if anyone has a simple block that would display data from a form table based on logged in user. When the user logs into the system they can click on member page, whitch only displays here info from the form data entered.
I can hard code the displayed items which field i would need.
so 10 entries in the form list 10 of the members entries only.
a delete button to the right would be great also.
Thanks Frank
I can hard code the displayed items which field i would need.
so 10 entries in the form list 10 of the members entries only.
a delete button to the right would be great also.
Thanks Frank
Something like:[code]
<?php
$u = new User();
$username = $u->getUserName();
$userid = $u->getUserID();
?>[code]
Then you can lookup the info in your table.