My news/ user cpanel

A

Anonymous

Guest
Hello,

I need help with my user cpanel, aside from the edit prfile, how can I make the my news code? The link is supposed to be updated everytime the user logs in, like the word "new" flashing for example.

About my project, the user is supposed to submit different and multiple request forms. Everytime he submits one, I want the total number to be displayed next to that form request. For, example, he can submit form1, five times and form2 three times. I want it to appear like this.

Form1 (5)
Form2 (3)


Can someone help? :help:

Thanks.


*I don't know if this post should be here, or in another forum, if so please move it.*
 
you need to log(insert values into a dB ) for how many times has the user filled the form,
and in the user panel you need to query that table for that user
eg.

Code:
select form1, form2 from user_forms where user = 'username'
 
Back
Top