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]

Similar Messages

  • 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.

  • 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.

  • Filtering Multiple Columns at once....

    Hi All,
    I was wondering if anybody had a smart way of filtering multiple columns. I know you can use excel formulas (index, v and h lookup etc),  to achieve this but i need to improve performance and would like to reduce the formulas in my design
    Example
                        A                B            C             D                E        F
                    Income     Budget     Profit       Profit
    1 Area 1    100           50            10            5
    2 Area 2    150           25             3             1
    On the canvas I will have combox with the values Income and Profit and a scorecard component looking at columns E and F
    When a user selects Income, data in A and B moves to E and F
    When a suer selects Porfit, data in C and D mooves to E and F
    Any suggestions would be appreciated.....
    Bija

    HI Bija
    Try using Filtered Rows as insertion type... and also try using list box instead of combo box if you have space as we should always try to apply WYSIWYG principle and combo box is not very good
    hope this helps
    Regards,
    Waqas

  • 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.

  • 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

  • Getting Multiple Recordsets using A Single Connection using jdbc-odbc

    I have a java application which uses sql 7.0 database server. I want to have multiple recordsets created using a single connection using jdbc-odbc bridge. Kindly let me know the procedure.

    Well, you create a recordset, then you create another one, and so on. Are you actually having a problem or you just don't know where to start?

  • Multiple recordsets

    The OLE DB Provider for Oracle 8.x has the capacity to get multiple recordsets from a stored procedure. But this future worked slower than getting recordset by recordset, one by one. This was because behind de scene the Provider performed several roundtrips to the database.
    Is this problem fixed in the OLE DB provider 9?

    OraOLEDB provider had to make round trips to the database to bind the REF Cursor parameters as ADO/OLE DB spec does not include REF Cursor data types. Since there is no change in ADO/OLE DB spec between different Oracle releases, OraOLEDB 9i still has to make these round trips to the database.
    However, things change for good with Oracle Data Provider for .NET (ODP.NET). An ODP.NET application binds REF Cursor parameters explicitly avoiding expansive round trips to the database. You can also choose to get the REF Cursor that you want without the overhead of fetching all the previous REF Cursors. ODP.NET beta is available for download on OTN.

  • Error:  Current provider does not support returning multiple recordsets from a single execution

    Hello,
    The following piece of code which has been working for the
    past five years suddenly started giving me the following error:
    Current provider does not support returning multiple recordsets
    from a single execution
    We have recenlty moved this site to a new server. Could this
    error be related to their CFAdmin settings? Eveything else on the
    site seems to be working fine. Or am I using an outdated tag or
    something?
    Any light in this direction is appreciated, thanks.
    Here's the code:

    There doesn't seem to be anything that seems wrong with the
    code. It might have something to do with the Max Pooled Statements
    or Number of Connections settings in the CF Administrator, but it
    could just as easily have something to do with a setting on the
    database. I would check with your provider.

  • Custom report - Filtering multiple cities?

    Hi Guys,
    I am trying to create a custom report for a list of cities (Not all Cities in the database, only a selection).
    FILTER BY FIELDS
    One cannot have London on the first line (Filter 1) and New York on the second (Filter 2) - it results in an error
    My guess it uses AND operator
    I tried my luck at inserting London OR New York OR Sydney etc, (Filter 1) but that does not work.
    Any advise would be appreciated
    Thanks

    Hi SmilingGoat,
    Unfortunately you are correct, and the filtering system with reports does indeed use an AND operator. You can't currently filter on multiple variations of the same field with the accuracy that you're after.
    You could potentially narrow it down using the following:
    Filter 1: >= London
    Filter 2: <= New York
    And this will output cities that are alphabetically between London and New York inclusively. Really though, the best workaround until greater flexibility is built into the reporting engine is just to filter in Excel.

  • Using InfoPath to make a form that filters multiple rows alphabetically into their according SharePoint Lists.

    Hello,
    I would like to create a form in InfoPath that looks similar to something you would see in excel, by that mean that I am able to enter multiple lines of data. After I submit the form, the data will be sorted/filtered by the first letter of the brand name
    into their appropriate list in SharePoint.
    JBL (InfoPath Form) -> (Sharepoint List) "J"
    Bose (InfoPath Form) -> (SharePoint List) "B"
    Lexicon (InfoPath Form) -> (SharePoint List) "L"
    Etc...
    I was wondering how I would achieve this? Workflow?
    Thanks in advance,
    Luke

    1. kudos on having JBL be both the first record of sample data, and also the initials of all three records :)
    2. within SP, you can create a calculated column for the first character in the string (LEFT(col,1))... you may need to promote the field from IP into the list.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Report Builder 2.0 - Filtering multiple values with LIKE command

    Hi,
    I'm trying to use multiple values for a LIKE command in the Tablix Properties-Filters area. I thought this would be easy, and it may yet prove to be easy yet I'm banging my head against the wall at the moment.
    I have created a new filter with:
    Expression: Campaign
    Operator: Like
    Value: 02A*
    So, I only want the Campaign codes returned that start with 02A. Now, this on it own works fine, the issue begins when I want to add in the Campaigns beginning with 02K. I have tried adding a separate new filter underneath the first as well as using the
    OR command, yet, nothing is working correctly. When adding a separate filter it appears to work as an AND in conjunction with my first filter for 02A, but needs to work independently as an OR.
    Any help much appreciated.
    Mike

    Hi Mike,
    Based on my research, this should be a product issue in Report Builder 2.0. In your scenario, you should use “true” (without the quotes) to replace “True”. While changing True to true cannot work via UI since the UI will automatically change the true to
    True again. To work around this issue in Report Builder 2.0, you have to modify the True to true in the code view mode.
    After testing the issue in my environment again, I find another way to fix this issue. Please see:
    Expression: =(Fields!Campaign.Value like "02A*") OR (Fields!Campaign.Value like "02K*" )
    Type: Text or Boolean (Boolean type will automatically change to Text type)
    Operator: =
    Value: =true
    Btw, this issue has been fixed in Report Builder 3.0, the filter which you posted will be work great in Report Builder 3.0.
    If you have any other question, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Filtering multiple values in URL of a WAD

    Hello,
    I want to filter a WAD by the field 0FUNDS_CTR (Fund center).
    I'm adding this to the end of the WAD's URL and it works fine:
    &Filter_Iobjnm=0FUNDS_CTR&Filter_value=XXXX
    The problem is that I want to filter the field by multiple values (XXXX, YYYY, ZZZZ), that are different values, not a range or something like that.
    Is there a way to filter a list of values in the url?
    Thanks,
    Hadar

    Hi,
    For example , If there are two values to be filtered then use as
    &Filter_Iobjnm_1=0FUNDS_CTR&Filter_value_1=XXXX&&Filter_Iobjnm_2=0FUNDS_CTR&Filter_value_2=YYYY
    The index can grow in size and the BW server will recognize the parameters for filtering.
    Thanks
    Sundar

  • File conversion - Multiple recordsets

    Dear All
    I am trying to convert a file in the Sender File Adapter that has more than one recordsets but I cant find the solution. The adapter gives the option of recordset numbers but how can I define them?
    To make it simple my file conversion result has the following format:
    <recordset_header> 
    ...      <DateTime>
    .......                <Date>21Oct20010</Date>
    .......                <Time>12:30</Time>
    ...      </DateTime>
    ...      <ID>
    .......                <Number>123</Number>
    .......                 <Name>AcmeCo</Name>
    ...      </ID>
    </recordset_header>
    <recordset_Item>
    ...        <Serial_ID>
    .......                  <product_code>234</product_code>
    .......                  <product_name>laptop</productName>
    ...         </Serial_ID>
    ...         <Description>
    .......                   <Category>Electronics</Category>
    .......                   <Country>Greenland</Country>
    ...          <Description>
    <recordset_Item>
    Thank you in advance.
    Haik
    Edited by: Haik Nazarian on Sep 17, 2008 7:29 AM

    Thank you for the quick reply Kummari
    The recordset per message parameter works for me when I have multiple but identical recordset structure.
    So you define one recordset structure and it works.
    however in this case there are two different recordsets in a single file i.e. recordset_header and recordset_item.
    So I need to define the recordset structures for each individual recordset in teh same file adapter.
    Is this achievable?
    regards
    Haik

  • Help with multiple recordsets and pulling an ID value (ASP)

    I started this discussion when first developing my project and posted on the General Tab.  I have figured out that issue (trying to get my Insert to work in ASP) but now am having trouble retrieving an ID value.  It should be simple.  I want to insert a new record into a single table and want to create a unique ID field.  I am using SQL Server and tried the Identity setting but won't be able to have admin privileges which are required to set the ID.  So, I'd like to just take the ID value from the last record and just add '1' to it to get a new unique ID manually. My INSERT portion was working, so I just decided to query the records to retrieve the last CatalogID and add '1' to get my new ID.  But it's not working!  I tried opening both a command and a recordset, but get various errors on invalid command use. 
    Any help would be great!  I'm new to all of this!
    I've posted a code snippet of what I thought I should do:
    <%LANGUAGE = “VBSCRIPT” CODEPAGE=”65001”%)
    <!--#include file=”Connections/CapConnect.asp”” -->
    <%
    If (Cstr(Request(“MM_insert”)) = “form1”) Then
                    Dim MM_editCmd
                    Dim MM_Lookup
                    Dim NextCatalogID
                    Set MM_Lookup = Server.CreateObject (“ADOB.Recordset”)
                    MM_Lookup.ActiveConnection = MM_CapConnect_STRING
                    MM_Liikup.Source = “Select CatalogID From dbo.tblCatalogItems ORDERBY CatalogID Ascending”
                    MMLookup.Open
                    MM_Lookup.MoveLast
                    NextCatalogID = MM_Lookup.Fields(“CatalogID”) + 1   'this is supposed to be my new ID value
                    Set MM_Lookup = Nothing
                    Set MM_editCmd = Server.CreateObject(“ADOB.Command”)
                    MM_editCmd.ActiveConnection = MM_CapConnect_STRING
                    MM_editcmd.CommandText = “INSET INTO dbo.tblCatalogItems (CatalogID, ModelName, Description, POCName, [POCPhone]) VALUES (NextCatalogID, ?,?,?,?)
                    MM_editcmd.Prepared = True
                    MM_edit.Parameters.Append MM_editcmd.CreateParameter(“param2”, 202, 1, 100, Request.Form(“modelname”) )
                  MM_edit.Parameters.Append MM_editcmd.CreateParameter(“param3”, 202, 1, 300, Request.Form(“Description”) )
    [Subject line edited by moderator to add server model]

    Ok, you've got lots of problems. First, explain again why you are not able to modify the CatologID to be an identity column? What is the datatype of that column now?
    Next, you are going about selecting your recordset incorrectly. If you are just looking for the last value inserted, there is no need to return all values to the recordset. Just select the max value:
    MM_Liikup.Source = “Select MAX (CatalogID) From dbo.tblCatalogItems”
    Next, you have a typo in your insert statement "“INSET INTO" should be "INSERT INTO"
    Next, your CommandText is wrong. There is no ending quote, and NextCatalogID will be treated as a string literal, not a variable. Use a ? placeholder for it and use the CreateParameter method to populate it.
    Next, your command text includes 4 placeholder, but you are only populating 2.
    But even when you get this to work it will be problematic. What happens when 2 users execute this at the same time? They both read the same value for the max record and increment by one, but the first will succeed and the second will fail. That's why it is always better to use an auto increment (Identity) column.

Maybe you are looking for

  • Is Creative Cloud billing hopeless?

    As an Adobe shareholder and 15-year customer, I dismay for the future of the company if they are betting on Creative Cloud.  At my company, I signed up for the one-year CC membership.   Everything was great until I decided to leave my company, four m

  • Unable to upload iPhoto book to print from iPad

    I have been unable to upload my iPhoto book to print it from my iPad... It will go through the process of requesting apple ID password --> verifying my credit card --> then will say "placing order. uploading project"  and look like it is uploading (i

  • Where are user-created Flash CS4 templates stored --- On Mac?

    The same question was asked and answered for Windows.  But on Mac, I went to the comparable folder en/Configuration/Templates/, and I found the pre-existing templates in the Advertising folder, but still not the ones I created.  Help!

  • How many bits does my macbook pro retina have

    I am trying to download anti-virus program but it requires me to know if my Mac is 32 bit or 64 bit and I honestly have no idea. Can someone please help?

  • Problem with the jsp printing

    Can anyone help me please with jsp i have the following problem can you help me. This is my console printing: null16-08-2006 REPLY TIME: 14:34:32 REPLY : Hinknff null16-08-2006 REPLY TIME: 14:36:34 REPLY : Hu jjdfgf null16-08-2006 REPLY TIME: 14:39:5