Zip Code 90630 & Area Code 714: Landlines Outage & Sporadic Internet Activity

What's going on in the Cypress, CA area? 
My 75 year old mom has not had a landlines phone, since Saturday (1/22/2011) and she has been told a technician will be at her home from 8am to 8pm on Tuesday (1/25/2011).  She's screaching mad over how long it took to get a real person on the phone--after unplugging this and that line.  Fortunately, she has a Sprint wireless phone that is working!!!
I'll have to check California customer protection laws, but I thought that kind of service range was not allowed.  Of course, she'll get a nice credit for this outage!
She also says that she has sporadic internet outages throughout the day.  This has been on-going.  A Verizon tech, my siblings and I have taught her how to read the lights on her modem/router.  I will now have her write down date and time that she notices that it is out--power in the data.

Hello kjsl61, I apologize for the inconveniences this has caused and the long hold times. I have sent you a private message.
Shamika_VZ
Verizon Support
Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or Plan.

Similar Messages

  • Using AJAX to load city, state, metro area based on zip code

    I'm new to getting APEX to work with AJAX properly. I've been reading some tutorials and trying to apply what they do to my situation, but I'm running into a problem. I have a text field item for zip code. What I want to happen is that when someone enters in a zip code, I want to use AJAX to populate 3 different select lists (1 each for state, city, and metro area) and to populate a checkbox (of neighborhoods based on the zip code as well). I'm looking at the examples in:
    http://www.oraclealchemist.com/wp-content/uploads/2006/11/s281946.pdf
    and
    http://apex.oracle.com/pls/otn/f?p=11933:63
    But they all use examples where the value of a text field item is used to populate 1 select list. I can't figure out how to apply that methodology to populate 3 select lists and 1 checkbox item. I've got all my SELECT statements written to populate these fields based on the value of the zip code text field item, but don't know how to convert what I already have to use AJAX.
    Here are my SELECT statements:
    P2805_STATE lov:
    ===========================================================================================
    SELECT INITCAP(GEO_DATA_STATE.STATEFULLNAME) d,GEO_DATA_STATE.STATE v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP
    WHERE isPrimary = 'P' and
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY STATEFULLNAME
    P2805_CITY lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_CITY.CITY)) d,GEO_DATA_CITY.CITY v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_CITY
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.CITY)) = trim(upper(GEO_DATA_CITY.CITY)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY GEO_DATA_CITY.CITY
    P2805_METRO_AREA lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_METRO.METRO_AREA)) d,GEO_DATA_METRO.CODE v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY 1
    P2805_NEIGHBORHOOD lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_HOOD.HOOD)) d,GEO_DATA_HOOD.HOOD v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO, GEO_DATA_HOOD
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
    GEO_DATA_HOOD.METRO_CODE = GEO_DATA_METRO.CODE and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY 1Do all these statements need to go in 1 on-demand process? Where do I go from here?

    Andy, cool. This is starting to make more sense. THANKS A BUNCH! OK. I've gone ahead and modified the on demand process to suit my needs, so I have:
    begin
      owa_util.mime_header('text/xml', FALSE );
      htp.p('Cache-Control: no-cache');
      htp.p('Pragma: no-cache');
      owa_util.http_header_close;
      -- Building States list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT INITCAP(GEO_DATA_STATE.STATEFULLNAME) d, GEO_DATA_STATE.STATE v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP
        WHERE isPrimary = 'P' and
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY STATEFULLNAME
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Cities list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_CITY.CITY)) d, GEO_DATA_CITY.CITY v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_CITY
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.CITY)) = trim(upper(GEO_DATA_CITY.CITY)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY GEO_DATA_CITY.CITY
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Metro Area list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_METRO.METRO_AREA)) d, GEO_DATA_METRO.CODE v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY 1
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Neighborhood list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_HOOD.HOOD)) d, GEO_DATA_HOOD.HOOD v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO, GEO_DATA_HOOD
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
        GEO_DATA_HOOD.METRO_CODE = GEO_DATA_METRO.CODE and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY 1
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
    end;It doesn't look like I would have to modify the appendToSelect function at all, correct? Is the checkbox that I need to populate handled the same way as these select lists? And it seems like I only need to make the 2 changes that you mentioned to get_AJAX_SELECT_XML function, right? So my javascript function should be like:
    <script language="JavaScript1.1" type="text/javascript">
    function get_AJAX_SELECT_XML(pThis,pSelect1,pSelect2,pSelect3,pSelect4){
    if  (document.getElementById('P2805_ZIPCODE').value.length == 5)
         var l_Return = null;
         var l_Select1 = $x(pSelect1);
         var l_Select2 = $x(pSelect2);
         var l_Select3 = $x(pSelect3);
         var l_Select4 = $x(pSelect4);
         var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=otn_Select_XML',0);
         get.add('TEMPORARY_ITEM',pThis.value);
         gReturn = get.get('XML');
         var sels = gReturn.getElementsByTagName("select");
         if(gReturn && l_Select1){
              var l_Count = sels[0].getElementsByTagName("option").length;
              l_Select1.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[0].getElementsByTagName("option");
                   appendToSelect(l_Select1, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select2){
              var l_Count = sels[1].getElementsByTagName("option").length;
              l_Select2.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[1].getElementsByTagName("option")[i];
                   appendToSelect(l_Select2, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select3){
              var l_Count = sels[2].getElementsByTagName("option").length;
              l_Select3.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[2].getElementsByTagName("option")[i];
                   appendToSelect(l_Select3, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select4){
              var l_Count = sels[3].getElementsByTagName("option").length;
              l_Select4.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[3].getElementsByTagName("option")[i];
                   appendToSelect(l_Select4, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         get = null;
    &lt;/script&gt;
    And then since all 4 items (3 select lists and 1 checkbox item) are populated based on the value inputted in the text field item, I would only need to add the following to the html form element attribute of my text field item, right?
    onKeyUp="javascript:get_AJAX_SELECT_XML(this,'P2805_STATE','P2805_CITY','P2805_METRO_AREA','P2805_NEIGHBORHOOD');"Denes, thanks for the example. It seems like what I need to do is somewhere inbetween what you have and what's in the example on http://apex.oracle.com/pls/otn/f?p=11933:37. I have 3 select lists and 1 checkbox item that should all be populate depending on the value entered for the text item. Do I still need to split everything up then into a function and an on demand process for each select list and checkbox?

  • We are unable to have iPhoto books shipped into Canada, because the shipping address field will only accept US zip codes. Any solutions?

    We are unable to have iPhoto books shipped into Canada because the shipping address field will only accept US zip codes. Any solutions?

    Have you set the Print Products Store to Canada in the iPhoto Preferences > Advanced Panel? 
    This determines the address format.
    And your billing address and shipping address must be in the same country, as defined for your AppleID and credit card.

  • ZIP CODE AREAS UPDATE

    Hi all,
    I am trying to load data with the updated zip code area. Moat of the areas are not upto date. How do i get the most updated ranges of zip codes?
    Thank you all,

    Deepthi,
    We did the Zip code update in Jan this year (It was only for Oregon) However I couldnt find the required HR package for it. My client was in a hurry and didnt have time to create a OSS note and wait. So I googled and found the latest Zip code range for US states and updated in V_T5UZC. If you have sometime, write to SAP and see what support packs are available.
    I used the following site (scroll to the bottom)
    http://www.answers.com/topic/list-of-zip-codes-in-the-united-states
    Thanks
    Sanghamitra

  • Programming for local area in zip code 19966

    Why is it that The Weather Channel broadcasts localweather for Philadelphia, PA rather than the Delmarva peninsula? Also, why are most of the advertisers on many of the cable channels businesses in the Philadelphia area rather than local advertisers in our area. When I had cable TV, the Weather Channel local broadcasts and cable advertisers were actually LOCAL.

    sportfisher wrote:
    Verizon should work on correcting this. It makes their service look a bit shoddy.
    I agree.  They ultimately need to get this at the CO level which would be more accurate for any given area.
    You might want to try the weather widget as that can be set for your specific zip code.  It gives current conditions on the initial screen and 7 day by pressing the "OK" button.  By pressing the "C" button (on the bottom of your remote) from the 7 day you can get an hour by hour forcast and another press of the "C" button will get you a local (really regional) radar.  Not as good as true Local on the 8's from TWC, but better than nothing.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • No longer get a Signal. My zip code is 32421 in NW Florida

    My zip code is 32421 in NW Florida, Just about the middle of the map, just below Interstate 10. I have been with Verizon since it took a portion of ALLTEL, was with Alltel since they took over another company and was with that company when they took over one. I have not personally changed providers in at least 15 years or more. My problem now is that my signal strength has become almost nonexistent where I have always been all these years. It seems like the fall of 2013 I had good signal but it started dropping. I finally change from a Motorola Maxx (I think it was) and now my wife has a Samsung Galaxy S3 and I have the S4. The other 2 phones on our contract (grandkids) both Apple 4's have the same problem. My son and his wife, who live next door and with Verizon also have the same problem and timeline. It is like a tower(s) have been out of commission for a while. My phone roams at times while in the house. If I have my phone set to announce when it loses the network or regains the network, it became to irritating to have to hear it. At one point we could almost use our cell phones exclusively at home. Now we are bound to landlines. I've never had any problem with Verizon but have become quite upset during the last 6 months to the point of trying something different when our contract expires. We are no longer getting the service we were getting with earlier contracts. Please help. Tell us what we can do or what Verizon is going to do to check this out.

    The signal is ever so slightly higher outside as would be expected, but still not high enough, often enough to be depended on. In fact it is more prone to roam when stepping out of the house than inside. I have to drive several miles Northwest (approximately 7 miles) towards the intersection of Interstate 10 and SR 71 in the panhandle of Florida, just south of the town, Marianna. When heading east on SR 286 from SR69, through the Ochessee area to I-10 and then heading east for about 10 miles from the Apalachicola River are several dropout areas of low to no signal, but since we're moving it is for a very brief period of time. Getting back to my house though, the service that I had as late as last summer, both inside and out, has significantly declined.  Just based on my driving from my house, it seems that a tower North of me has dropped. You can find these roads on Google maps, in fact you can find them by zooming in on the Verizon Coverage map, find Tallahassee in North Florida and follow Interstate 10 to the west for about 50 miles. The problem seems to be from SR 286 to SR 69 then to SR71. Along a stretch about 17 miles south of Interstate 10 in between these 3 intersections is where the problem seem most prevalent.
    I'm not sure what you meant by follow and send a private message. The only option I see for me is "Reply". Please excuse my ignorance.

  • Trying to set download apps...says it needs my credit card info...I put it in....but then it won't take it because it says I need to enter my zip code.  I live in Canada and have a postal code, not a zip code.  Help

    I am trying to set up my new Iphone 4 and download apps.  I made an Apple Id which is all good.  But when I try and enter in my credit card info it keeps asking for my Zip code and state.  I live in Canada not US.  I changed the phone to Canadian but it still keeps asking for it and won't let me put in my right information which in turn won't let me download any apps.  Can anyone help?

    Postal & Zip codes are same.  Just enter postal code without space.  It will accept.

  • Is there a way of adding a zip code locator

    I'm doing a website for a business with 6 locations and would like for the customer to be able to type in their zip code to find the closest store in their area.
    I've done a custom google map usng (mapsenginelite) but would like to add some how the zip code locator. Any help would be much appreciated.
    Here's the site I've been working on http://www.cortezautopros.com/locations.html
    Thanks Ben

    This free extension may help http://www.dmxzone.com/go/21863/html5-data-bindings

  • Firefox will not allow me to change the zip code on the Walmart website.

    When I follow a link to Walmart it automatically puts in an incorrect My Store location and zip code. I change it, close Firefox, re-open and try again. Same thing. It does not do that with other browsers. I have removed cookies several times, I have uninstalled and reinstalled Firefox but nothing seems to work.

    Details like this are stored in a cookie.
    Try to "Remove Cookies" Walmart cookies and check that they are still gone after closing and restarting Firefox:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    Also make sure to close all tabs with the Walmart site to prevent Firefox from storing them in the sessionstore.js file as part of session data.
    It is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted if clearing cookies doesn't work.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookies files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies
    You can remove all data stored in Firefox from a specific domain via "Forget About This Site" in the right-click context menu of an history entry ("History > Show All History" or "View > Sidebar > History") or via the about:permissions page.
    Using "Forget About This Site" will remove all data stored in Firefox from that domain like bookmarks, cookies, passwords, cache, history, and exceptions, so be cautious and if you have a password or other data from that domain that you do not want to lose then make a note of those passwords and bookmarks.
    You can't recover from this 'forget' unless you have a backup of the involved files.
    It doesn't have any lasting effect, so if you revisit such a 'forgotten' website then data from that website will be saved once again.

  • Retrieve city and state from zip code that is entered by user

    I am trying to use AJAX to retrieve city and state from a table based on a zip code that is entered by the user. Two are text fields (zip code and city) and one is a SELECT field (state).
    1. I defined an application item called TEMPORARY_APPLICATION_ITEM.
    2. I defined an application process called SET_CITY_STATE as follows:
        a. Process point: on demand
        b. type: anonymous block
        c. process text:
    <pre>
    DECLARE
    v_city VARCHAR2 (100);
    v_state VARCHAR2 (2);
    CURSOR cur_c
    IS
    SELECT city, state
    FROM ZIP
    WHERE zip = v ('TEMPORARY_APPLICATION_ITEM');
    BEGIN
    FOR c IN cur_c
    LOOP
    v_city := c.city;
    v_state := c.state;
    END LOOP;
    apex_util.set_session_state('P2_CO_CITY',v_city);
    apex_util.set_session_state('P2_CO_STATE',v_state);
    EXCEPTION
    WHEN OTHERS
    THEN
    apex_util.set_session_state('P2_CITY','Unknown city');
    apex_util.set_session_state('P2_STATE',null);
    END;
    </pre>
    3. Javascript is defined in the region header:
    <pre>
    <script language="JavaScript" type="text/javascript">
    <!--
    function pull_city_state(pValue){
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=Set_City_State',0);
    if(pValue){
    get.add('TEMPORARY_APPLICATION_ITEM',pValue)
    }else{
    get.add('TEMPORARY_APPLICATION_ITEM','null')
    gReturn = get.get('XML');
    get = null;
    //-->
    </script>
    </pre>
    4. In the HTML Form Element Attributes of the P2_CO_ZIP text item: onchange="pull_city_state(this.value)";
    The city and state are not being populated. I checked the select statement and it is retreiving the city and state in SQL WORKSHOP > SQL COMMANDS.
    I would like to use it for the mailing address as well, so I would need to make the application process / javascript a bit more generic to be used in two places.
    I placed the application on apex.oracle.com:
    Workspace: RGWORK
    Application: Online Certification Application (28022)
    Can someone assists, please.
    Thank you,
    Robert
    Edited by: sect55 on Jun 2, 2009 4:11 PM

    Hi Robert,
    Try using XML instead of session state -
    Change the application on demand process with the following script -
    >
    DECLARE
    v_city VARCHAR2 (100);
    v_state VARCHAR2 (2);
    CURSOR cur_c
    IS
    SELECT city, state
    FROM ZIP
    WHERE zip = v ('TEMPORARY_APPLICATION_ITEM');
    BEGIN
    FOR c IN cur_c
    LOOP
    v_city := c.city;
    v_state := c.state;
    END LOOP;
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="P2_CO_CITY">' || v_city || '</item>');
    HTP.prn ('<item id="P2_CO_STATE">' || v_state || '</item>');
    HTP.prn ('</body>');
    EXCEPTION
    WHEN OTHERS
    THEN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="P2_CITY">' || 'Unknown city' || '</item>');
    HTP.prn ('<item id="P2_STATE">' || '' || '</item>');
    HTP.prn ('</body>');
    END;
    >
    in your javascript make sure you typing the application process name correctly as it is case sensitive.
    Hope this helps,
    Regards,
    M Tajuddin
    web: http://tajuddin.whitepagesbd.com

  • Values not showing up for 3 digit zip code maps of states

    I've been tinkering with an app that displays the US, with a query that shows how many folks we have in each state. The link takes you to a page that displays the state/zip code style map. On the map of the US, I can see the label and the value from the query for all states. But in the state map, all that shows up are the labels. I have the map set to show values, but they won't display.
    I'm using APEX 4.0.1 in a 10.2.0.4 database running on Windows.
    Any thoughts?

    Hi mjblake,
    The Map Region columns (i.e. REGION_NAME, REGION_ID, etc) can vary for each Map source .amap file. So it's definitely worth referencing the AnyChart Map Reference Information when you're adding your map series query, to ensure that your query is referencing data that's actually contained in your chosen .amap file.
    By default, the wizard will set the "Map Region Column" to REGION_NAME, as this the default AnyChart column. However, some maps, like the US State Zipcode maps, don't actually have a REGION_NAME column in their data, which is why you would need to update the "Map Region Column" on the Map Attributes page to your chosen column e.g. REGION_ID. In the case of the US State Zipcode maps, the available columns are REGION_ID, CENTROID_X and CENTROID_Y, as shown in this example: http://anychart.com/products/anychart/docs/users-guide/map_reference/United-States-of-America-3-digit-ZIP-Code-Maps-for-All-50-States-Alabama-Flash-Map.html?fromtree. You may not be aware of this, but when stepping through the Create Map wizard, on the 'Query' page, there's a Show/Hide region called "Map Region Information", which displays the AnyChart information associated with your selected map.
    Regards,
    Hilary

  • How do I display an invalid zip code in a summary table

    On my airshow website we have a feedback form, one of the questions is the zipcode where the visitor came from. This works fine. The summary results tab includes a lookup for the zipcode where I show the city associated with the zipcode and then how many responses came from that zipcode. This can be seen here http://www.hollisterairshow.com/feedback-results.php?tab=7
    In testing, I found that an invalid zipcode is not displayed in the summary table, although it is counted in the total number of responses. I'd like to display the invalid zipcode and leave the City blank, or maybe put "Invalid zip code". The current code is displayed below, it's beyond my ability to figure out how I should change it to display invalid zipcodes and I'd really appreciate some direction on this.
    I know I could validate the zipcode on entry but it's quite possible the zipcode table I have is out of date and i can't find a free downloadable list, so I'm thinking anything invalid could cause me to update my table.which is fine.
    Thanks for any assistance.
    Tony
    <div class="TabbedPanelsContent">
    <?php
    // Make a MySQL Connection
    $query = "SELECT feedback.zip, COUNT(feedback.zip), zipcodes.citystate FROM feedback, zipcodes WHERE feedback.zip = zipcodes.zipcode GROUP BY feedback.zip";
    $result = mysql_query($query) or die(mysql_error());
    // Print out result
    while($row = mysql_fetch_array($result))
    echo $row['zip']. " ". $row['COUNT(feedback.zip)']. " ". $row['citystate'];
    echo "<br />";
    ?>
    </div>

    Use an outer join on the two tables so that results are returned for all feedback rows, instead of just matching rows. The column zipcodes.citystate will be NULL. In your recordset output, you can test for null in the column and populate it with "Invalid Zipcode" if you want.
    You'll need to move the join to the FROM clause as I believe that MySQL does not support outer joins in the WHERE clause like most other DBMS's.

  • Zip code Problem (or Frustrated with iTunes "Support")

    I have been having a new problem (with an old credit card) on iTunes, where I get the repetitive error that the zip code I've entered does not match the one the bank has for the card.  I have ensured that the zip code is correct and checked the bank zip code to make sure that that was done.  I have made many, many iTunes purchases with this card, and not had a problem with the zip code previously, and I have not moved or changed the zip code since the last time I tried to make an iTunes purchase.  It's not like the zip code would change itself.  But I checked to make sure, anyway.  I also contacted my bank to ensure there wasn't a hold on that particular card.
    This I did before I contacted itunes support.  An email to iTunes support explaining the above and specifically stating that the zip code in itunes for that card is correct, and 2 days later, I get a reply instructing me on how to change the zip code for the card in iTunes.  I wonder if Apple has any idea how condescending that comes across.  Who would waste their time with tech support for an error like that if their zip code was incorrect?
    Now, I've recieved 2 more emails on the same track, basically telling me to fix the zip code.  I am 100% sure that the zip code in iTunes is correct.  I tried to tell the tech "support" person (Johan) this, but he has essentially only told me repeatedly how to fix the zip code on iTunes.  (Again, Apple, if you're reading this, that is really rude and condescending, assuming your users are THAT stupid).
    Has anybody ever had this error before, and does anybody have a fix for it?
    Thank you,
    Katy

    I get the repetitive error that the zip code I've entered does not match the one the bank has for the card
    Since you are seeing the same dialog repeatedly, try this.
    Launch iTunes on your Mac.
    From the iTunes menu bar click iTunes / Preferences then select the Advanced tab.
    Click: Reset warnings and Reset cache
    Click OK
    Restart your Mac, launch iTunes. See if you can download a free app. Regardless of whether or not it's free or purchased, you'll still see the login window.

  • Which SSN/Billing Zip Code do I use for the iPhone I plan to purchase

    I plan to buy a new iPhone 4S on Amazon, and then use a friend's SIM card to activate it. But I heard there was an activation stage that requires the last 4 numbers of SSN and Billing Zip code. So whose SSN and Billing Zip Code would I use? Do I use the friend's or what?

    There was nothing in the activation step that asked for anything about your SSN number.  Setting up service with a carrier will ask that, as they run a credit check, but simply activating a device in iTunes does not require any SSN information.
    If you are setting up service with a carrier, you will need your own SIM anyway, and they will require your billing information and address.  You cannot use someone else's SIM to set up cellular service for yourself.

  • Serious service failure in zip code 70119 / 70122 at the New Orleans Jazz Fest Weekend 1

    I experienced total service failure in zip code 70119 & 70122 at the New Orleans Jazz Fest.  No send / receive of data, voice or text.  I use an iPhone 5s running the latest OS.  I had better service during all hurricanes, except Katrina, of course.  The only evidence I have of this are screenshots of pinwheeling texts and Facebook posts.  Oh, and I have a very ****** off wife for not being able to contact me.  This was a first, but it was a weekend-long frustrating affair.  Please address this before next weekend's Jazzfest.  I'm not the only Verizon customer pinwheeling.

    I experienced total service failure in zip code 70119 & 70122 at the New Orleans Jazz Fest.  No send / receive of data, voice or text.  I use an iPhone 5s running the latest OS.  I had better service during all hurricanes, except Katrina, of course.  The only evidence I have of this are screenshots of pinwheeling texts and Facebook posts.  Oh, and I have a very ****** off wife for not being able to contact me.  This was a first, but it was a weekend-long frustrating affair.  Please address this before next weekend's Jazzfest.  I'm not the only Verizon customer pinwheeling.

Maybe you are looking for