OT: More PHP gentle guidance needed - multiple recordsets on a page

I have a client list - it's segregated by 10 different
business categories.
I want to produce an ordered list of clients for each
category, e.g.,
Category 1
client1
client2
Category2
client1
client2
What would be the best way to do that? I know I could have 10
recordsets on
the page, one for each category, and just loop through each
one, but I'm
trying to find a more efficient way of doing that? Or should
I just go this
way?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================

:) I don't have to guess.
Actually, I sent you the wrong part of the file, as well.
That one is
designed to seperate and stack on different sides, you needed
the one column
layout.
anyway, i'm tryign to rewrite my stuff with micha's
suggestion
"Murray *ACE*" <[email protected]> wrote
in message
news:[email protected]...
> I'm looking at this, and looking at Micha's suggestion.
Guess which one I
> like better? 8)
>
> --
> Murray --- ICQ 71997575
> Adobe Community Expert
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
>
http://www.dreamweavermx-templates.com
- Template Triage!
>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
> ==================
>
>
> "crash" <[email protected]> wrote in message
> news:[email protected]...
>> Get all records, order by category
>>
>> If Category=1
>> publish
>>
>> if previous category is same, keep in same group
>> if different, end current group, begin new category
name
>>
>> I have code, but currently is a FUBAR'd mess.
>>
>> see this page:
>>
>>
http://demo.mediachurch.com/news.php
that arranges all articles according
>> to category (group).
>>
>> My code, which *really* needs to be fixed (in
process) and optimized:
>> I'm currently removing the extra variable names I
set (to work with
>> programmer who really didn't like DW recordsets)
>>
>> I'll finish this when I get back from lunch, an
dpost a new copy, bu this
>> might give you a place to start from.
>>
>> //BEGIN TWO COLUMN LAYOUT
>> if($mcColumns == 2){
>> $mcCCount = 1;
>> do {
>>
>> //I setup my variable here
>>
>> //$mcCCount DESIGNATES WHICH DIV SHOULD BE USED. ODD
GET LEFT, EVEN GET
>> RIGHT
>> if ($mcCCount%2){
>> $newsDiv = 'groupListlt';
>> }else {$newsDiv = 'groupListrt';}
>>
>> //SEPERATE ARTICLES INTO GROUPS (ARRAGED BY GROUP,
IF PREVIOUS GROUP
>> ID($pid) MATCHES CURRENT ($newsgroupID) PUT
TOGETHER, ETC.
>> switch($pid) {
>> case '':
>> $newsBag = '<div class="'.$newsDiv.'"
>>
id="'.$row_rsNewsListing['gName'].'"><h2>'.$newsGroupTitle.'</h2><h3>'.$row_rsNewsListing ['newsTitle'].'</h3><div
>>
class="listing">'.$newsContent.'</div><br class="br"
/>';
>> $mcCCount++;
>> break;
>> case $row_rsNewsListing['gID']:
>> $newsBag =
'<h3>'.$row_rsNewsListing['newsTitle'].'</h3><div
>>
class="listing">'.$newsContent.'</div><br class="br"
/>';
>> break;
>> default:
>> $newsBag = '</div><div class="'.$newsDiv.'"
>>
id="'.$row_rsNewsListing['gName'].'"><h2>'.$newsGroupTitle.'</h2><h3>'.$row_rsNewsListing ['newsTitle'].'</h3><div
>>
class="listing">'.$newsContent.'</div><br class="br"
/>';
>> $mcCCount++;
>> break;
>> }
>> $pid = $row_rsNewsListing['gID'];
>> if(empty($row_rsNewsListing['gID'])){//CHECK IN CASE
OF NO ARTICLES
>> TO DISPLAY
>> $newsBag = '<h2>There are currently no
articles to display</h2>';
>> }
>>
>> //PRINT OUT WHAT WE'VE COLLECTED
>> echo $newsBag;
>>
>> //EMPTY VARIABLES FOR NEXT LOOP
>> unset($newsDate);
>> unset($newsContent);
>> unset($newsBag);
>>
>> } while ($row_rsNewsListing =
mysql_fetch_assoc($rsNewsListing)); //END
>> DO WHILE
>>
>> if(!$query_rsNewsListing){
>> mysql_data_seek($rsNewsListing, 0);}//RESET
RECORDSET TO 0
>> echo '</div>';
>> }//END 2 COLUMN
>>
>
>

Similar Messages

  • Problem - Multiple recordsets in one page

    Hi,
    Is it possible to use more than 1 recordset in a single page?
    Dreamweaver acts like there should be no problem, but when I upload
    & test the page I just get an error message saying there's a
    problem processing the requested URL. Each table and field has a
    unique name. I'm using ASP VBScript on Win2000 with Access DB.
    Please help!
    Ian

    The simple answer is yes, multiple recordsets are OK. I'd
    suggest re-posting - explaining what you're trying to do, what the
    errors say and supplying code or a URL so people can see what
    you're doing.

  • Multiple recordsets on a page?

    I have a data-driven photo gallery that some of you are
    probably sick of
    reading about. But, it's coming along nicely, and I'm quite
    happy with it.
    Ultimately this gallery will contain hundreds of images.
    Extracting so many
    images from the database to build the gallery page is quite a
    lengthy
    process, and to manage this, I have broken the images into
    separate gallery
    categories.
    So, the main gallery page will open with a drop-down list of
    other galleries
    that can be chosen (the list is also data driven). I would
    like to adapt
    the loading of that list so that if any given gallery is not
    currently
    populated with images, its name will not appear in the list.
    The only way I
    can think of to do this would be to place a recordset for
    each of those
    galleries on the page and test the size of the recordset
    before populating
    the <select> tag with gallery names. Am I missing
    something, or is this
    about the size of it? Won't that add a significant burden to
    the loading of
    the page?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================

    > sorry about your data management
    Yeah - me too. I'm not ready to tackle that one yet....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Dave Buchholz" <[email protected]> wrote
    in message
    news:[email protected]...
    > <snip>So, the joining table would have a recordID
    from the images table,
    > and a
    > galleryID from the gallery table, right? And then what
    would the SELECT
    > look like?</snip>
    >
    > correct
    >
    > the SELECT would look something like
    >
    > SELECT DISTINCT galleryName
    > FROM ((galleries INNER JOIN jointable USING (galleryID))
    INNER JOIN images
    > USING (imageID))
    >
    > sorry about your data management
    >
    > --
    > Dave Buchholz
    > I-CRE8
    > www.i-cre8.co.uk
    > Skype ID: I-CRE8
    >
    >
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> That would be the way to do it.
    >>
    >> So, the joining table would have a recordID from the
    images table, and a
    >> galleryID from the gallery table, right? And then
    what would the SELECT
    >> look like?
    >>
    >> But - ugh, this means that I have to revise ALL the
    management
    >> routines....
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "Dave Buchholz"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Why not use a joining table and then you can
    associate any image with
    >>> any gallery
    >>>
    >>> --
    >>> Dave Buchholz
    >>> I-CRE8
    >>> www.i-cre8.co.uk
    >>> Skype ID: I-CRE8
    >>>
    >>>
    >>>
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> Ahh - right, well, it's complicated by the
    fact that any given image
    >>>> can be assigned to 2 galleries, so there are
    two fields - imgsGallery
    >>>> and imgsGallery2. The value of imgsGallery2
    can be null, but not
    >>>> imgsGallery, which must have a value.
    >>>>
    >>>> --
    >>>> Murray --- ICQ 71997575
    >>>> Adobe Community Expert
    >>>> (If you *MUST* email me, don't LAUGH when
    you do so!)
    >>>> ==================
    >>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>> ==================
    >>>>
    >>>>
    >>>> "Dave Buchholz"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> Assuming the gallery name is a foreign
    key in the images table then a
    >>>>> recordset with an inner join e.g.
    >>>>>
    >>>>> SELECT DISTINCT galleryName
    >>>>> FROM galleries INNER JOIN images USING (
    galleryID )
    >>>>>
    >>>>> would list only the Galleries which have
    images associated with them.
    >>>>>
    >>>>> I am sure there is probably a more
    subtle way of doing this but it
    >>>>> works for me :-)
    >>>>>
    >>>>>
    >>>>> --
    >>>>> Dave Buchholz
    >>>>> I-CRE8
    >>>>> www.i-cre8.co.uk
    >>>>> Skype ID: I-CRE8
    >>>>>
    >>>>>
    >>>>>
    >>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>>I have a data-driven photo gallery
    that some of you are probably sick
    >>>>>>of reading about. But, it's coming
    along nicely, and I'm quite happy
    >>>>>>with it. Ultimately this gallery will
    contain hundreds of images.
    >>>>>>Extracting so many images from the
    database to build the gallery page
    >>>>>>is quite a lengthy process, and to
    manage this, I have broken the
    >>>>>>images into separate gallery
    categories.
    >>>>>>
    >>>>>> So, the main gallery page will open
    with a drop-down list of other
    >>>>>> galleries that can be chosen (the
    list is also data driven). I would
    >>>>>> like to adapt the loading of that
    list so that if any given gallery
    >>>>>> is not currently populated with
    images, its name will not appear in
    >>>>>> the list. The only way I can think
    of to do this would be to place a
    >>>>>> recordset for each of those
    galleries on the page and test the size
    >>>>>> of the recordset before populating
    the <select> tag with gallery
    >>>>>> names. Am I missing something, or is
    this about the size of it?
    >>>>>> Won't that add a significant burden
    to the loading of the page?
    >>>>>>
    >>>>>> --
    >>>>>> Murray --- ICQ 71997575
    >>>>>> Adobe Community Expert
    >>>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>>> ==================
    >>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>>> ==================
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Filtering multiple recordset.

    I have posted 2 more discussions on the forum so i do aplogise but i am unsure the best way to describe what i am looking for
    i have a product page. with links to individual products
    <a href="product-description.php?ID=<?php echo $row_Recordset1['ID']; ?>"><img src="../images/AW/thumbs/<?php echo $row_Recordset1['imageSmall']; ?>"/></a>
    on the product page i need to call in other tables based on the catagory of the product and sizes of the product,
    i have created multiple recordsets joining the table but need help with the filtering of the information
    i have a recordset showing the product information (basics - name, size, price)
    $colname_Recordset1 = "-1";
    if (isset($_GET['ID'])) {
      $colname_Recordset1 = $_GET['ID'];
    mysql_select_db($database_beau, $beau);
    $query_Recordset1 = sprintf("SELECT * FROM beauProd WHERE ID = %s", GetSQLValueString($colname_Recordset1, "int"));
    $Recordset1 = mysql_query($query_Recordset1, $beau) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    i have a recordset to join the size table with the product table
    $colname_Recordset2 = "-1";
    if (isset($_GET['SizeProdID'])) {
      $colname_Recordset2 = $_GET['SizeProdID'];
    mysql_select_db($database_beau, $beau);
    $query_Recordset2 = sprintf("SELECT * FROM beauProd, beauSizes WHERE beauSizes.SizeProdID = beauProd.SizeProdID AND beauProd.SizeProdID = %s", GetSQLValueString($colname_Recordset2, "int"));
    $Recordset2 = mysql_query($query_Recordset2, $beau) or die(mysql_error());
    $row_Recordset2 = mysql_fetch_assoc($Recordset2);
    $totalRows_Recordset2 = mysql_num_rows($Recordset2);
    in the body i have a select list that needs to display the records of all the products in that catagory
    <form id="FormName" action="" method="get" name="FormName">
                <table width="300">
                  <tr>
                    <td><select name="name" class="text" id="selectName">
                      <option value="Select Design">Select Design</option>
                      <?php
    do {
    ?>
                      <option value="<?php echo $row_Recordset1['ID']; ?>"><?php echo $row_Recordset1['name']; ?></option>
                      <?php
    } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));
      $rows = mysql_num_rows($Recordset1);
      if($rows > 0) {
          mysql_data_seek($Recordset1, 0);
                $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    ?>
                    </select></td>
                    <td><div align="right">
                      <input type="submit" name="button" id="button" value="select" />
                    </div></td>
                  </tr>
                </table>
              </form>
    and a select list that needs to show the sizes of each product
    <select name="os0" class="text" id="Cos0">
        <option value="select Category">Select Size</option>
        <?php
    do {
    ?>
        <option value="<?php echo $row_Recordset2['SizeProdID']; ?>"><?php echo $row_Recordset2['from'] . " - " . $row_Recordset2['to'] ; ?></option>
        <?php
    } while ($row_Recordset2 = mysql_fetch_assoc($Recordset2));
      $rows = mysql_num_rows($Recordset1);
      if($rows > 0) {
          mysql_data_seek($Recordset2, 0);
                $row_Recordset2 = mysql_fetch_assoc($Recordset2);
    ?>
      </select>
    the way i have it at the moment i cant get either select list to work. CAN ANYONE ADIVSE PLEASE
    thanks in advance

    Jonathan Fortis wrote:
    can these all go into one field?
    No. One field should hold one piece of information.
    Sizes table
    size_id
    size
    1
    0-3 months
    2
    3-6 months
    3
    6-12 months
    4
    12-24 months
    5
    small
    6
    medium
    7
    large
    8
    2 years
    9
    3 years
    10
    4 years
    Categories table
    cat_id
    category
    1
    baby
    2
    toddler
    3
    child
    Products table
    prod_id
    cat_id
    product
    1
    1
    Baby-gro
    2
    1
    Bib
    3
    2
    T-shirt
    Stock table
    prod_id
    size_id
    stock
    1
    1
    50
    1
    2
    0
    3
    3
    35
    3
    4
    20
    3
    8
    23
    3
    9
    0
    3
    10
    15
    In the stock table, prod_id and size_id must be declared as a joint primary key. This ensures that only one record can be created for each combination of product and size.
    There are 50 Baby-gros for 0-3 months in stock. Baby-gros for 3-6 months are normally available, but currently out of stock.
    T-shirts for 6-12 months, 12-24 months, and ages 2-4 are normally available. There is stock for all except age 3.
    [Edited to correct the prod_id values in the stock table]

  • Error while trying to process multiple Recordsets in Flat file.

    Hi All,
    I am working on Flat File to Flat File scenario and my structure is as follows.
    Recordset
         Record1
              Field1
              Field2
         Record2
              Field3
              Field4
         |
         Record9
              Field5
              Field6
         I am going to receiver multiple Recordsets from my input and need to pass them as output flat file after doing some manipulations in mapping(I am using Java mapping).
         In Moni I am able to see multiple Recordset XMLs created but the message is failing in receiver communication channel with error
    "Failed to process message content. Reason: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'Conversion configuration error: Unknown structure '' found in document', probably configuration error in file adapter (XML parser error)' (Software version: 3.0.1)"
         When I am trying to pass Single Recordset I am able to see the output, but when I am trying with multiple Recordsets it is throwing error.
         Can anybody help me in finding the root cause to this problem.
         My Receiver channel Content conversion is as follows.
         RecordsetStructure: Record1,Record2, -- - - ,Record9
              Record1.fieldFixedLengths     
              Record1.fieldNames
              Record1.endSeparator so on till Record9
    Regards,
    Jayaram.G

    You might want to check the following things
    Are u specifying field names,separators for Record1,Record2..Record9.
    Is you occurence repeats after record1..record9 again?
    Change your  structure occurence as per the runtime data you provide..
    See whether your java mapping modifies the structure that does not match with fcc configuration. You might want to pay attention over there too.

  • Generating multiple recordset names

    Hi All,
    I am doing a scenario which is File to IDOC.
    I am reading a file which is of variable structure , so in FCC i have used the RecordSet Sequence : Variable
    after reading the file i have the structure as
    example:
    - <RecordSet>
    - <W6>
      <WE601 />
      <W602 />
      <W603 />
      <W604 />
      <W605>D</W605>
      </W6>
    - <N1>
      <N101>ST</N101>
      <N102>ZZ</N102>
      <N103></N103>
      <N104></N104>
      <N105>R</N105>
      <N106 />
      </N1>
    - <N4>
      <N401>ST</N401>
      <N402></N402>
      <N403>SD</N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
    - <N1>
      <N101>WH</N101>
      <N102>ZZ</N102>
      <N103>2070</N103>
      <N104> SCS</N104>
      <N105 />
      <N106 />
      </N1>
    - <N4>
      <N401>WH</N401>
      <N402></N402>
      <N403></N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
      </RecordSet>
    But i have to get the recordset name <RecordSet> twice as given below after mapping
    - <RecordSet>
    - <W6>
      <WE601 />
      <W602 />
      <W603 />
      <W604 />
      <W605>D</W605>
      </W6>
    - <N1>
      <N101>ST</N101>
      <N102>ZZ</N102>
      <N103></N103>
      <N104></N104>
      <N105>R</N105>
      <N106 />
      </N1>
    - <N4>
      <N401>ST</N401>
      <N402></N402>
      <N403>SD</N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
      </RecordSet>
    - <RecordSet>
    - <W6>
      <WE601 />
      <W602 />
      <W603 />
      <W604 />
      <W605>D</W605>
      </W6>
    - <N1>
      <N101>WH</N101>
      <N102>ZZ</N102>
      <N103>2070</N103>
      <N104> SCS</N104>
      <N105 />
      <N106 />
      </N1>
    - <N4>
      <N401>WH</N401>
      <N402></N402>
      <N403></N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
      </RecordSet>
    i.e., i am getting 1 recordset after FCC and then after mapping i need to generate 2 recordsets and pass 2 IDOCS.
    Please suggest me how can i generate  multiple recordsets.
    Thanks
    Sai_SHA

    Hi All,
    sorry the requirement is a different one
    I am reading a file which is of variable structure , so in FCC i have used the RecordSet Sequence : Variable
    after reading the file i have the structure as
    - <RecordSet>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>ST</N101>
    <N102>ZZ</N102>
    <N103></N103>
    <N104></N104>
    <N105>R</N105>
    <N106 />
    </N1>
    - <N4>
    <N401>ST</N401>
    <N402></N402>
    <N403>SD</N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    </RecordSet>
    But i have to get the recordset name <RecordSet> twice , as the file is of variable structure i cannot go for RecordSet Sequence : Ascending .
    - <RecordSet>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>ST</N101>
    <N102>ZZ</N102>
    <N103></N103>
    <N104></N104>
    <N105>R</N105>
    <N106 />
    </N1>
    - <N4>
    <N401>ST</N401>
    <N402></N402>
    <N403>SD</N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    </RecordSet>
    - <RecordSet>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    </RecordSet>
    i am getting 1 recordset after FCC but i need to get 2 recordsets.
    Please suggest me how can i generate multiple recordsets and pass and pass mutilple IDOCS.
    Thanks
    Sai_SHA.

  • I haven't done an update since 24.0 because my computer is running out of memory. How much MORE memory will I need to get up to version 28.0?

    I haven't done an update since 24.0 because my computer is running out of memory. How much MORE memory will I need to get up to version 28.0?
    My computer is really old.
    It is running out of memory.
    I haven't done a firefox update since 24.0 because I think it will explode my computer.
    I see that v28.0 takes 200MB.
    How much more is this than what is already loaded for my v24.0?
    Will it just add the extra pieces, or will it require a free block of 200MB (which my computer does not have)?
    I don't want to crash and lockup my computer because I try to install something that is too big for the remaining memory.
    Thanks.

    You should updated to Firefox 28, Firefox updates don't take any new space they just replace the existing files.
    There are some things you can do to clean up your hard drive to free up space however, http://arstechnica.com/civis/viewtopic.php?p=21178060 and http://support.microsoft.com/kb/956324, also uninstall programs you don't use anymore and delete files you don't need anymore.
    You should also start saving up for a new machine, Windows XP is being dropped from support by Microsoft in a few days, which means it will no longer be safe to use on the internet.

  • Multiple Recordsets and the Oracle OleDB Provider

    We are trying to return multiple recordsets from an Oracle SP through the Oracle oledb provider using VB. First of all, is this possible and is there any example code out there. Having trouble finding some info on this.
    Thanks

    After reading install guide I figured out waht might be the problem.
    I put OLEDB install into the same home (ora81).
    It was suppose to go into different home directory (ora92).
    Also, OLEDB is one of few components which can't exist in more then one
    home dir on single machine. Installer knows that, and skips install of
    OLEDB provider itself. So in my case I had to first uninstall OLEDB provider 8.1.7
    and then install OLEDB provider 9.2
    Thanks,
    ...dejan

  • Update multiple records on one page php/mysql

    Hi folks,
    I am trying to adapt a page to offer the option to update multiple records on one page.
    The intention is to edit FAQ categories which are contained in a table with just two fields - the category and an id.
    The page lists each categories in a form with a submit button which is then repeated for each record in the recordset.
    Unfortunately my plan didn't work and only the first record updates as intended.
    Can anyone suggest how I can make it work?
    Here's the code I have so far.
    ************** The Update Code *****************
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if (!isset($mm_abort_edit) || !$mm_abort_edit) {
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
      $updateSQL = sprintf("UPDATE faq_categories SET category=%s WHERE id=%s",
                           GetSQLValueString($_POST['category'], "text"),
                           GetSQLValueString($_POST['id'], "int"));
      mysql_select_db($database_con_mysite, $con_mysite);
      $Result1 = mysql_query($updateSQL, $con_mysite) or die(mysql_error());
      $updateGoTo = "faq-category-edit.php
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    ************** Update Code Ends *****************
    ************** The Form *****************
    <form name="frm_editcategory" id="frm_editcategory" method="POST" action="<?php echo $editFormAction; ?>">
      <?php do { ?>
    <fieldset>
              <input name="id" type="hidden" value="<?php echo $row_rs_faqcategory['id']; ?>" />
              <input name="category" type="text" class="formrightcolumn"  value="<?php echo $row_rs_faqcategory['category']; ?>" />
              <input name="save" type="submit" class="submitbutton" id="save" value="save" />
    </fieldset>
              <input type="hidden" name="MM_update" value="form1" />
       <?php } while ($row_rs_faqcategory = mysql_fetch_assoc($rs_faqcategory)); ?>
    </form>
    ************** The Form Ends *****************
    Cheers
    Dave

    What does debugging tell you? What's the value of each of the variables? Did you try using regular echo statements to monitor what's going on? That's what I always do whenever I am stuck in my PHP coding.

  • Need multiple lines in single column of header using alv oops

    Hi
    I am using alv oops in a report.
    I need multiple lines in single column of header.   
    In header of my report i am using 9 columns.
    In the second column i need to split the line
    Notification description/activity/work/activity long text/
    as
    Notification description/
    activity/
    work/
    activity long text/
    Please guide me to achieve this functionality.

    It is not possible to break the column description in the ALV  disply.
    Actually, if you have a longer description in one of the seltext_* field of the fiels catalog, it will automatically display it as a tooltip, if you put the mouse over the heading. In ALV OO, you can explicitly set the tooltip text.
    Also you can get more help on the field pressing F1: If you use DDIC fields, it it automatic, otherwise you can do it as you like.

  • I need to host a Shared PDF on SharePoint. If it is on SharePoint can only one person comment at a time? I know documents have to be checked out when using SharePoint. I need multiple users to be able to comment in real time and see comments in real time.

    I need to host a Shared PDF on SharePoint 2010. If it is on SharePoint can only one person comment at a time? I know documents have to be checked out when using SharePoint. I need multiple users to be able to comment in real time and see comments in real time. Is this possible?

    try here:
    http://www.bbb.org
    File a complaint with them. Verizon will call you to fix the blunder.
    But remember it is always up to the customer to insure what they are getting and what it costs. Don't trust the word of a sales person who makes their living on getting that sale. Lies, deceit or false promises will be and have been used by sales people for thousands of years.
    Good Luck

  • Does anyone know of a simple home accounting application? iBank does not seem to be that user friendly and has more features than I need. I would like something that will connect to my bank and will allow the creation of a budget that is simple.

    I am looking for a very simple home accounting application. iBank seems to not be very intuitive and it has more features than I need. I am looking for the ability to create a budget and keep a bank register with the ability to connect to my bank and do updates.

    I have a small business, I chose Quickbooks because anything else cost much more. That triggered the hiring of a bookkeeper who knew how to use it. It was not the cheapest choice after all.

  • I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics

    I am using a code based typesetting program (not WYSISYG) that outputs PDFs. I am producing 100 plus pages that have multiple graphics on each page. I need to know how to format a PDF command that I can incllude in my programming that will tag my graphics with "Alternative Text".
    I know that with a Microsoft product graphics can be tagged before a PDF is made. I need to know how to do this with my programming.

    The Acrobat SDK might be a starting point.
    From there, perhaps a plug-in (built with C+).
    Perhaps with a licensed release of a PDF Library (this could be $$).
    The viable and cost effective alternative is use the tried and true.
    Authoring in an appropriate authoring application with appropriate tag management.
    Example:  Adobe InDesign; Adobe FrameMaker or MS Word with PDFMaker (comes with install of Acrobat).
    This way you place "Alternative Text" when mastering content in the authoring file.
    Going the route and with some look-see (research) you may find programmatic approaches to placing the alt txt in the authoring file.
    Note: as discussed in the Matterhorn Protocols there is no programmatic method that provides a fully accessible PDF (specifically, that is an ISO 14289-1, PDF/UA-1 compliant PDF).
    Regardless, here you have a sub-forum for discussions on Acrobat usage.
    Consequently discussions on/of 3rd party software is rather out of scope eh.
    Be well...

  • What is the best charging cable for the iPad Air (that is not made by Apple)? I need a long cable (over 6ft or more). I also need the cable to be of high quality and the cord part of the cable to be made of strong material.

    What is the best charging cable for the iPad Air (that is not made by Apple)? I need a long cable (over 6ft or more). I also need the cable to be of high quality and the cord part of the cable to be made of strong material. Apple does not make one this long. Is there a cable out there that is sturdy like this and is safe to use?

    yes, but I'm trying to use my iPad to type notes (using pages) and I have the smart case which I use as a stand. I need a cable long enough to fit through the back of my desk and the charging brick for the iPad won't fit behind the desk. I have to put it on the floor and then the apple cables aren't long enough to reach.

  • When using iPhoto can I remove some of the default options such as faces or  flagged etc. There are more bits than I need for my basic use.

    When using iPhoto can I remove some of the default options such as faces or  flagged etc. from the left bar. There are more bits than I need for my basic use.

    Hello Susan,
    Not sure if I have fully understood your question but have you tried ...
    iPhoto > iPhoto help > browse help > view and organise.  Perhaps this touches on some of your needs.
    Usually, best results for questions come from posting to the forum directly related to the question, in this case iPhoto.  That tends to find the gurus
    Would you like me to ask the hosts to relocate your question?  

Maybe you are looking for

  • Looking for app to stream from MacBook Pro to iPad

    I am hoping soon to get one of the new iPads and would like to play movies stored on my MacBook Pro laptop and watch them on the iPad.  What is best one and I dont mind paying for it.

  • Basic TableUI element to Reset Data in WEbDynPro For Java

    Hi Experts, I am new to webdynPro for java . Can anybody plz help me out. i wrote the following code to retrieve data from DB. which is working very much fine. public void onActionGetRecords(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )

  • Query to see which system events are being traced?

    I had an Oracle consultant working on our database recently. He left with some system level tracing running at level 16 (support) and the trace files are filling the disk. Is there a query I can do to determine which events are being traced so that I

  • Help with a "save as" query or an alternative suggestion

    Hi all Hope someone can spread some light on this for me, im rather new to using adobe pro - and never ventured into java scripts as yet.. I have created a pdf document with various text boxes within the document. The document will be pushed out to e

  • Why will MSN Live Mail not open in Safari

    I can not get MSN Live Mail to open in Safari. I can MSN, but when I click on Hotmail it just keeps trying to load without getting anywhere?????