CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: PeejAvery

Search: Search took 0.26 seconds.

  1. Replies
    6
    Views
    10,423

    Re: Listbox update from database

    No, not a PHP array, a JavaScript array. When you first call the ajax, add each item to a JavaScript array. Then, every time you update, check to see if the item is already in the JavaScript array....
  2. Replies
    6
    Views
    10,423

    Re: Listbox update from database

    If you only want to add the items that change in the database, then you are going to have to make an array of all items. Then, just check the array. If the item exists in the array, skip it. If it...
  3. Replies
    6
    Views
    10,423

    Re: Listbox update from database

    First off, AJAX is an implementation, not a language known as Asynchronous JavaScript and XML. So, this would be a JavaScript solution.

    There are tons of examples of this here at CodeGuru and...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured