hot questions tagged status-message - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:25:32Zhttp://stackoverflow.com/feeds/tag?tagnames=status-message&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger2How can I programmatically set the status message for Live Messenger?Chris Charabaruk2008-11-08T12:28:24Z2009-05-14T09:40:42Z
<p>I want to be able to change the status message for Live Messenger, but everything I've found only works for the music message (see <a href="http://coldacid.net/images/screenshots/live-messenger-status-and-music-messages" rel="nofollow">this screenshot</a> to see the difference between the two).</p>
<p>It is possible to do this, as there are programs that have the ability to change it, and some alternate clients for Live Messenger can also set the status message themselves. I just need to know how to do this myself.</p>
<p><strong>Clarification:</strong> The solution needs to work with the latest versions of Live Messenger (i.e. the wave 3 beta). Working with older versions is good too, but it's the 14.x versions that I'm working with.</p>
http://stackoverflow.com/questions/304139/how-best-to-pass-a-message-for-the-user-between-pages2How best to pass a message for the user between pagesDarryl Hein2008-11-20T02:08:31Z2008-11-28T21:40:42Z
<p>So the chain of events is:</p>
<ol>
<li>The user submits a form.</li>
<li>During the processing of the submission, there is a message generated, such as "Your record was saved."</li>
<li>The user is redirected to a new page, say the search results.</li>
<li>The new page needs to display the message.</li>
</ol>
<p>So, the question is how to get the message from step 2 to step 3? This is only one simple example...there are many other much more complicated examples.</p>
<p>I am using PHP.</p>
<p>Needs:</p>
<ul>
<li>supports multiple messages and need to be formatted on the receiving machine as required</li>
<li>messages can be added on the same page (such as within step 4)</li>
<li>messages added from inside any function or object</li>
</ul>
<p>Some options I have come up with:</p>
<ul>
<li>store in a session variable as an array and emptied after each display</li>
<li>pass as a get or query parameter; can get annoying as you are constantly processing this and have to remember to get it; as it can get long, it could easily go over the max length of the query string</li>
<li>store in the database on a per session basis (may not always be for a logged in user); this would require an extra insert on each page where they are added, possibly multiple, and an extra select on every page</li>
</ul>
<p>Currently I have been storing the messages in the session in an array, but I'm wondering if there is a better way. I don't think the other 2 options above are very good.</p>
<p><strong>Edit:</strong> I use 2 functions for the session method: AddStatusMsg() (adds an element to the array) and DisplayStatusMsg() (returns an HTML formatted message and empties the array).</p>