I am extremely desperate any one who can help me!

how do i do a flag or an alert on the server/system, so that when the user logs in they are notified that an email has been sent to them, and that they should check there inbox!
All messages sent to the user will be stored in a mysql database, does this improve or hinder my query?
All suggestions/solutions aill be gratefully appreciated!
Thanks

You question is a little vague... when you say "log in" are you referring to logging on to their workstation or logging on to a web application?
If it is the latter, this could be done when their logon is validated. If the logon is valid, then execute a query that checks for any messages that have not yet been viewed plus any other logic you want to add....
-Dave

Similar Messages

  • I have a CS3 Creativ Suite. - I have uninstalled it fram XP the corret way. Now i have installed Windows 7 and try to reinstall the creative suite. It accept the first CD an the serial number, but when i get to the second CD it stop. Any one who can help?

    I have a CS3 Creativ Suite. - I have uninstalled it fram XP the corret way. Now i have installed Windows 7 and try to reinstall the creative suite. It accept the first CD an the serial number, but when i get to the second CD it stop. Any one who can help?

    If you have Windows 7 Pro you can try to install CS3 in XP mode.

  • My new 3 month old imac 27 with 10.6.8 snow is giving a **** of noise from the fan. suddently starting after today starting up. and the volume buttoms and screen lights up and down not working any more.. any one who can help here???

    my new 3 month old imac 27 with 10.6.8 snow is giving a **** of noise from the fan. suddently starting after today starting up. and the volume buttoms and screen lights up and down not working any more.. any one who can help here???

    Try an SMC Reset. (System Management Controller)
    Shutdown>unplug from power for ten minutes>press and hold in the power button for ten seconds>startup again.
    Also try a PRAM Reset. (Parameter RAM)
    Shutdown. At the bootup chime, hold down CMD-Option-P-R together, wait for two more chimes, total three, then let go of all keys to finish booting,
    If this doesn't do it, run the Hardware Test in Extended
    http://support.apple.com/kb/ht1509

  • HI THERE!IS THERE ANY ONE WHO CAN HELP ME HAVING TROUBLE WITH MY IPHONE 3GS AFTER UPGRADING TO IOS5.0 IT WONT READ THE SIM AND NO SERVICE  AND IT WONT ACTIVATED.PLEASE HELP

    HI THERE IS THERE ANYONE WHO CAN HELP ME?I UPGRADE MY IPHONE 3GS TO IOS5 AND NOW IT WONT ACTIVATE AND SAYS THE SIM CARD IS NOT SUPPORTED I CHANGE FOR ANEW SIM ALREADY BUT STILL WONT ACTIVATE.PLEASE HELP

    you're responding to a post that's almost 2 months old. Time to post your own thread.

  • Hi hello...I have a problem deleting unwanted albums in my phone/photos, any one who can help me do it step by step please.Have patience with me I am not so good with this.

    Hi Hello,
         Before I start my question, hope nobody laugh at me, I am not a computer geek, I just a user of a phone.
    I have read so many how to do and how to delete albums in the web/google but not anyone of them make sense to me,I hope someone can help me do this step by step.
    I am using an iphone 4/operating system 7.0.4
    I would like to delete the unwanted albums in my phone under the photo icon, where do i start?
    like...   1/ connect the phone to the computer
                2/ click the itune icon
                3/ then whats next?
    Please help I could not download anyother app, the system( phone )  always tells me that memory is almost full, I am already frustrated, please help.
    If I reset the phone will it erase all the phone numbers and remove all my notes?
    Thank you.
    <Email Edited by Host>

    Hi mylenebar!
    Here is an article that will help you remove the desired photos from your phone:
    iTunes: Syncing photos
    http://support.apple.com/kb/ht4236
    To delete synced photos and videos from your device
    In iTunes, click the Device button in the upper right corner. (If viewing the iTunes Store, click the Library button in the upper-right corner first.)
    Click the Photos tab in the resulting window.
    Choose "Selected albums" and deselect the albums or collections you want to delete.
    Note: To delete all synced photos, deselect "Sync Photos from" and, when asked, click "Remove photos."
    Click Apply.
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Is there any one who can help me solve this?

    Hi.
    I'm taking AP Computer Scinece AB in high school now.
    I've been assigned many programs so far. But.. I can't figure them out.
    There are two programs I need your help. So..Please!!!!!! Help Me!!!!
    Please!! Enjoy helping me!
    <Program #1>
    It's divided into three small programs and I've figured out one of them, which was the easiest one..You will be able to see the programs if you click on the link below.
    (page1)
    http://iboard3.superboard.dreamwiz.com/board.cgi?db=90_darkoo&idx=2&page=1
    (page2)
    http://iboard3.superboard.dreamwiz.com/board.cgi?db=90_darkoo&idx=3&page=1
    <Program #2>
    http://iboard3.superboard.dreamwiz.com/board.cgi?db=90_darkoo&idx=4&page=1
    The way I figured out first part of program #1 was like this :
    public class ThreeX1
    public static void main ( string[] org )
    system.out.println ();
    int startValue = 21;
    int count = 0;
    while (startValue >1)
    count ++;
    if (startValue % 2 == 0)
    startValue = startValue/2;
    else
    startValue = 3*startValue +1;
    system.out.println ( count );
    ===================================================
    From there, for the second and third programs of program #1, I tried to figure it out by using 'for' statement instead of 'while', but I couldn't.
    So..Please help me out.. Thank you
    or you can e-mail me too. It would be great too.
    add. : [email protected]

    I probably shouldn't be doing your homework but here it is:
    public class ThreeX2{
         public static void main ( String[] org ){
              int startValue = 2;
              while(startValue<100){
                   System.out.print(startValue);
                   System.out.print("\t");
                   System.out.println(timesToGetToOne(startValue));
                   startValue++;
         private static int timesToGetToOne(int intForValue){
              int count = 0;
              while (intForValue!=1){
                   count ++;
                   if (intForValue % 2 == 0)
                        intForValue = intForValue/2;
                   else
                        intForValue = 3*intForValue +1;
              return count;
    public class ThreeX3{
         public static void main ( String[] input ){
              int maximumTries = 1000000;
              int numberOfitterations = 10;
              try{
                   numberOfitterations = new Integer(input[0]).intValue();
              }catch(Exception e){
              try{
                   maximumTries = new Integer(input[1]).intValue();
              }catch(Exception e){
              int startValue = 2;
              while(startValue<maximumTries){
                   if(timesToGetToOne(startValue)==numberOfitterations){
                        System.out.print("When startvalue is: ");
                        System.out.print(startValue);
                        System.out.print(" it will take exatly ");
                        System.out.print(timesToGetToOne(startValue));
                        System.out.println(" iterations to get to 1.");
                        // remove the next line and it will show all values that
                        // takes numberOfitterations amount of times to get to 1
                        break;
                   startValue++;
         private static int timesToGetToOne(int intForValue){
              int count = 0;
              while (intForValue!=1){
                   count ++;
                   if (intForValue % 2 == 0)
                        intForValue = intForValue/2;
                   else
                        intForValue = 3*intForValue +1;
              return count;
    }Problem 3 is diffucult, since the input is one date I assume that the current reading is for this date. I don't
    know the date of the previous reading so I cannot calculate if the consumption is between June through
    Ocober.
    your Main method shoud have 4 inputs date accountNumber currentReading previousReading
    Your main function would look like this:
         public static void main ( String[] input ){
              Calendar date=null;
              int accountNumber = 0;
              int currentReading = 0;
              try{
                   String[] s = input[0].split("/");
                   date = Calendar.getInstance();
                   date.set(Calendar.YEAR,new Integer(s[2]).intValue());
                   date.set(Calendar.MONTH,new Integer(s[0]).intValue()-1);
                   date.set(Calendar.DAY_OF_MONTH,new Integer(s[1]).intValue());
              }catch(Exception e){
                   System.out.println("cannot get date, please start this program the following way: ");
                   System.out.println("programName date(format mm/dd/yyyy) accountNumber currentReading previousReading");
              try{
                   accountNumber = new Integer(input[1]).intValue();
              }catch(Exception e){
                   System.out.println("cannot get account number, please start this program the following way: ");
                   System.out.println("programName date(format mm/dd/yyyy) accountNumber currentReading previousReading");
              try{
                   currentReading = new Integer(input[2]).intValue();
              }catch(Exception e){
                   System.out.println("cannot get current reading, please start this program the following way: ");
                   System.out.println("programName date(format mm/dd/yyyy) accountNumber currentReading previousReading");
              try{
                   previousReading = new Integer(input[3]).intValue();
              }catch(Exception e){
                   System.out.println("cannot get previous reading, please start this program the following way: ");
                   System.out.println("programName date(format mm/dd/yyyy) accountNumber currentReading previousReading");
    // check the date between june and oct:
    // (5>date.get(Calendar.MONTH))&&(9<date.get(Calendar.MONTH))

  • Looking for some one who can help me in SUN IDM

    Hi Friends,
    I am looking for some one who can help me to learn sun IDM. Off couse I will pay for your time.
    I can be reached at [email protected]
    Please let me know if you have some time
    Thx

    Hi Zebra,
    I really appreciate your reply. I would like to discuss out of this forum so that no one here annoyed with our newbie questions. Please send me email as I listed earlier to discuss best ways. I send email to Andy to join us.

  • Need advise, I have purchased compressor 4.1 to compress my movie file, particularly MKV files. Problem is, that the software freezes when trying to import the 10GB MKV. Any one that can help?

    Need advise, I have purchased compressor 4.1 to compress my movie file, particularly MKV files. Problem is, that the software freezes when trying to import the 10GB MKV. Any one that can help?

    Afraid Compressor won't work with MKV. If you have access to a system running an earlier version than Mavericks, and with Perian installed you can use MPEG Streamclip or Quick Time Pro to convert to a mov.
    Russ

  • Since Ios 7 Update of my iPhone 5 I can not log into any WLAN any more - who can help to solve this major problem

    Hi all,
    I updated my iPhone 5 recently to IOS 7 - Since then I do not get any access to my home WLAN / WIFI with the iphone 5.
    At same time the iphone 3S and IPAD 1 of my wife (both IOS 5.x) still work fine in our homes WLAN / WIFI.
    Who can help to get my Iphone 5 with IOS 7 back to work in the home WIFI ?
    Thanks in advance for any possible solution.
    Best regards
    Dirk from Hamburg Germany

    Try this first.
    On the iPhone go to Settings > General > Reset and select Reset Network Settings.
    This will erase all saved wi-fi networks and settings.
    If no change after this, try resetting your modem and wireless router. Disconnect the router from the power source followed by disconnecting the modem from the power source. Wait a few minutes followed by powering your modem back on allowing it to completely reset before powering your wireless router back on allowing it to completely reset with the modem.

  • Is there really no one who can help me with my question postet 3 days ago!?

    I have a problem with blurry images after publishing -Am I really the only one who thinks this is a big problem -I tried to get some help 3 days ago? Is there other forums that can help me on this topic?
    It looks fine in iweb, but not in the browser after publishing... I'ts only with small logo images with hard graphichs in jpeg, its not my compression, it looks fine before publishing...

    dear wyodor, I thought that I explained my problem all right in my post? well,
    when I put a logo in the corner of my site -in my case a jpg file with some text, it looks good in iweb, but after publishing its not possible to read the small text because of the way iweb compress photos - my question is -can I do anything to keep the jpeg-compression i made i photoshop? Is there no way in iweb to control the compression? Its really frustrating -and the only really problem I have with iweb
    se how my logo looks im my site:
    http://web.mac.com/pierrienevoldsen/24x36.dk/om_24x36.dk.html
    I have the same logo twice now just to check different advises, but still its impossible to read the small lettes -but not in iweb

  • Plz: Any one who can show me how to iterate an list in jsp

    I had retrieved the data from the database setted into the bean class
    and i want to display the list on the jsp page (ie. i want to iterate a list)
    ........thanks

    ArrayList alist = new ArrayList();
    Iterator itr = alist.iterator();
    while(itr.hasNext())
    out.println(itr.next());
    tats it.............For a guy that doesn't knows how to call a method in another class that's very impressive :-D

  • HELP DESPERATELY NEEDED....Any Mods who can help??

    Please see my other post for all the details
    http://community.bt.com/t5/BB-in-Home/Can-anyone-tell-me-why-my-IP-profile-has-dropped/td-p/42654/hi...
    basically i have been up since 7am awaiting an engineer to attend between 8am and 1pm and so far no engineer, i've call priority care and they have informed me no engineer is due??
    i'm getting sick of the waste-of-time that is BT at the moment and i want to take this further...can somebody please please please help me... i'm literally running out of options to solve this and getting extremely sick of nothing being done.

    this has all been done
    that's my problem..i keep getting told the same things about reducing noise, my noise level gets reduced and my ip profile goes up..the next day, literally the next day, the noise is back and my ip profile is capped again...it keeps happening again and again...
    the noise level drops, then, in BT's own words, they are capping my profile because of a "fault" ..they may have mentioned EDN Fault I think or words to that effect.... no one is actually telling me, at least no one from BT, what exactly this fault is and it keeps getting passed to this, from what evidence i have, non-existant engineering team who then uncap the profile...which lasts max of 24 hours... i have moved the hub to the master socket... and still the same problem

  • Two Adobe Digital Accounts but I just need one, who can help ?

    Hello,
    I once opened an account in Adobe Digital Editions with one
    user name: [email protected] and then forgot that I already had this one when I opened up another
    account on another Computer. There I already bought many Germany epub books, so I would like to delete the first account on the first PC so that I
    can úse the second Adobe digital Account on both PCs and the connected books with this second account. Currently I have the Problem, that when I
    just connected my sony reader PRS 600 on the first PC (with the first account) it immediatelly deleted my possibility to read the formerly installed ebooks from the second PC. Now what can I do to reinstall the possibility to read all my many books from the second PC on my PRS 600 ?I just want to read what I paid for on my ereader without having two different adobe digital accounts. The second account has the username: [email protected], This is the one I really want to keep!!!!
    Maybe the Tech support can erase this account an can pput the books inside this account on my second account ?
    Thank you so much for your help!
    Jan

    There is no way to merge to the two accounts
    Your choices are:
    Talk to the technical support for the stores where you bought the books, and request redownloads for all of the content in one account, and make sure that you associate it with the other account.
    Manage both accounts using different OS level users. - (wont work for Sony Readers)

  • I can't download the apps with big size like need for spees, but in apps with normal size(less than 100KB)there is no problem,is there any body who can help me?

    I can't download the apps with big size like need for spees

    Have a little patience. 4 minutes is only a short time for someone to find your post and reply to it. Also clicking on "This Solved My Problem" marks your problem as solved so many folks that may otherwise help will pass the question by since it is "solved."
    I suggest you start a new question that gives a good title to a specific problem. Then in the body of the thread describe the problem in detail, tell us what steps you have tried so far to correct the problem, what happened, and what error messages you received.

  • Any Body who can help me

    I want to maximize the Report's window +
    Forms parameter window
    as we can maximize our forms by
    set_window_property() method.
    null

    Have a little patience. 4 minutes is only a short time for someone to find your post and reply to it. Also clicking on "This Solved My Problem" marks your problem as solved so many folks that may otherwise help will pass the question by since it is "solved."
    I suggest you start a new question that gives a good title to a specific problem. Then in the body of the thread describe the problem in detail, tell us what steps you have tried so far to correct the problem, what happened, and what error messages you received.

Maybe you are looking for