Check Read and unread Message [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am trying to conditionally style user-to-user messages on my site based on the following:
If the user has not yet accessed the message, it remains bold ("unread").
If the user clicks the link and accesses it, it goes from bold to unbold ("read")
(reference: this is how many email inboxes work)
Question: How would I check if the user has clicked on the link to view their new message, or if they have not? As in, how would I store this information and indicate that it has been "read"?

Try adding a column to your messages' table (for example read) and set this column to 1 when the user has read his message?

Related

Web page is not loaded after activation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
If users use the registration form to register, by going directly to the registration page , then they receive an e-mail with an activation link, and when they click on it, the index page of the logged-in section is loaded. This works fine.
But in the case where the (non-registered) user goes to the registration page by clicking a link to a restricted page, the e-mail activation link redirects to here.
Because of that additional http://www.studyhood.com inserted at the beginning of the URL, the browser returns an error message.
Finally, if the user logs in (not registers) after clicking on the link to the restricted page, everything is again fine, since she is taken to translation_second.php without any problem.

How to fetch email headers properly [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I'm using imap_fetchheader() to retrieve header info of an email message. For some emails this message id is empty. But when i check the same email through webmail message id is present.
Is there anyway to fetch all header info without any issues?
The issue here is not with the imap_fetchheader() . Message in email header will be like this:
<e5d22200ed6ca211cbc1d12de63f1383#192.168.0.25>
I think, for some message ids, browser thinks it as html tag and prints. Issue resolved when i convert it using htmlentities() ex:
htmlentities( imap_fetchheader($conn, "1"))
how silly the answer is...!

Query information about my app's user in twitter [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to query information about my app's user Info (name, id...)
In twitter (PHP).
What I want to know how I can reuse the token credentials of user???
I have done that but with my Twitter session. It means I must login with my twitter account, after that I can query information about my app's user (That's not correct!!!!!).
Please read this, this will be useful for your query :-
http://mikerogers.io/2013/02/25/how-use-twitter-oauth-1-1-javascriptjquery.html

counting the number of times a script is executed [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have got two php forms - question.php and marks.php. I want that each time question.php submits its values to marks.php , the variable $total in the form marks.php be incremented. I have tried using static variable but still am not able to get it done!
Nothing "inside PHP" itself will persist anything across different page loads. You need to store the value somewhere "external", e.g.:
write it to a file
write it to a database
store it in a memcache or other kind of cache
send it to yourself in an email
burn it into the screen of the computer and use an elaborate video camera and OCR setup to read it back
...
maybe: sessions

How create and send an user activation email in CakePHP 2.x [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am new in cakephp. So I would like to know about how will create an email activation link in Cakephp 2.x and how will send it? Please anybody give an example
you can use verification link as hash tag to generate from username or email address which should be unique to your entire application.
here i am giving you just idea how to achieve this task, but you must have to try with your self to do something by yourself
just go throw this link and understand how they actually sending email verification to user and how they verify this after click on email.

Categories