NEED HELP!!! PHP include content displays always shifted down, WHY?

Hi, I am fairly new to using PHP and Dreamweaver together and
I have placed the attached code in my document and I have noticed
that the PHP generated table, div or anything else is always
shifting down in IE and FireFox as well. Why?...and what is the
solution to display and position dynamic content correctly inside
the "content" div without shifting and having control of it.
Thank you in advance.
Attila

What is in this?
include("database.php");
Also, you have not managed cellspacing/cellpadding/border on
the table in
the first include....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"reinhat" <[email protected]> wrote in
message
news:[email protected]...
> Hi, I am fairly new to using PHP and Dreamweaver
together and I have
> placed the
> attached code in my document and I have noticed that the
PHP generated
> table,
> div or anything else is always shifting down in IE and
FireFox as well.
> Why?...and what is the solution to display and position
dynamic content
> correctly inside the "content" div without shifting and
having control of
> it.
> Thank you in advance.
> Attila
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Strict//EN"
> "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
> <html xmlns="
http://www.w3.org/1999/xhtml"
lang="en-US">
> <head>
> <title>Welcome to the library!</title>
> <meta http-equiv="content-type" content="text/html;
charset=utf-8" />
> <style type="text/css">
> body {
> background-color: #CCD3D9;
> color: #000000;
> text-align: center;
> }
> #content {
> width: 800px;
> height: 1000px;
> margin-left: auto;
> margin-right: auto;
> border: 2px solid #A6B2BC;
> background-color: #FFFFFF;
> color: #000000;
> margins: 0 20px 0 20px;
> text-align: left;
> }
>
> #TableResult {
> width: 750px;
> height: 900px;
> margin-left: auto;
> margin-right: auto;
> background-color: #FFFFFF;
> color: #000000;
> text-align: left;
> border-collapse:collapse;
> }
>
> #TableResult td {
> padding: 0.7em 0.5em 0.5em 0.8em;
> border: 2px solid #A6B2BC;
> background-color: #CCFFCC;
>
> }
> </style>
> </head>
> <body>
> <div id="content">
> <?
> include("library_browse.php");
> ?>
> </div>
> </body>
>
> <!-- the code below is the PHP content in
"library_browse.php"-->
>
> <?
> include("database.php");
> $result = mysql_query("SELECT * FROM library");
> print ("<TABLE id=\"TableResult\">");
> print ("<TR><TD colspan=\"7\" >Available
Books</TD></TR><BR>");
> print ("<TR> <TD> ID </TD> <TD >
Title </TD> <TD > Author </TD> <TD > Year
> </TD> <TD > Delete </TD></TD>");
> print ("<TR><TD colspan=\"7\" >Please click
the title for more
> information.</TD></TR><BR>");
> while($row = mysql_fetch_array($result)) {
> print (" <TR><TD >$row[id] </TD>
<TD ><A
> href=\"browseb.php?id=$row[id]\">$row[title]
</A></TD> <TD >$row[author]
> </TD>
> <TD >$row[year] </TD><TD ><A
href=\"delete.php?id=$row[id]\">Delete
> </A></TD></TR><BR>");
> }
> print ("</TABLE>");
> mysql_close($linkID);
> ?>
>

Similar Messages

  • PHP - include content based on page variable

    Hello,
    I have a slight /and probably not that hard) problem.
    I have index page which has <div> content </div>
    area that shows included files like articles etc. Nothing uncommon
    in that nope. At the side there is a submenu <div> sidebar
    </div> showing various things depending if you're logged in
    etc. The issue is how to show the sidebars areas based on the
    indexes current shown include at the content area.
    For example i do not wish to show the news tab at the sidebar
    with any other pages than the default include "welcome.php" at the
    index.php.
    So what manner variable should i set to drop of unwanted
    content on some pages?
    i have currently tried out making variable like
    $include_in_sidebar which is set true on the content pages where i
    wish to have "the" option shown at the sidebar, and then inside if
    statement placed in the sidebar code around the specific part i
    wish to have shown. That does not do the trick, so something (or
    many things) must be wrong. All sort of help and guidelines
    appreciated,
    Cheers!

    OK... this was actually quite easy. How come i did not figure
    it out before. I just applied Show if region to the part i wished
    to make visible only on some pages and made the condition to look
    for page include namevariables which had to match the condition...
    like --- if (@$_GET['page'] == 'xxx') {}..
    Feeling a bit shamed now, as i roamed through various places
    where to learn this trivial trick. The original question was
    probably too easy so no one bothered answering :D... need to study
    more them PHP manuals...

  • Need help for style not displaying correctly in chm

    I’m using RoboHelp HTML version 8.  RH8 is dropping a style from my stylesheet.  The style appears to be applied correctly when I view a topic (the HTML file) directly with either IE or Firefox browser, and it appears correctly when I view the topic with the “Item View” feature in RH8 (the eyeglasses icon).  However, in the compiled HTML help output from RH, the style is not correct.  The style in question is a class of style (“desc” for descriptions) for a subset of table data. The “desc” class should have the data in the cell left justified, and the cell width should be 50%.  The main parent style for table data (centered text, cell width varies) seems to be applied instead, and the child style for descriptions is not applied.  Below I've included a screen shot of a table page as it looks in Item Viewer, then the same page as it appears in the CHM, and finally the style sheet in its original state before being added to RH.
    Here are things I’ve checked for:
    ·         The project is large, with over 6300 topics and a compiled chm of 5560 KB.  RH crashes when I try to apply style sheets or master pages to multiple topics from the Topic List.  However, I created a much smaller test project with 122 topics and still get the dropped style.
    ·         The style sheets were created outside of RH, and are also used for presenting the same content over the web outside of RH.  The styles display fine in the other context through a browser.  I have not modified the style sheet in RH, but I have opened it in RH.  I’ve also tried deleting and re-copying the style sheet into the project.
    ·         There is another set of styles applying to the tables, for table rows.  There is a “tr” class for the heading and classes for rotating background colors.  These child styles appear correct with no problems.  Every row in a table belongs to a child class of row styles.  In the case of table data styles, most cells require the parent “td” style and only a subclass require the child “desc” style.  It’s the “desc” style that isn’t showing up in the chm.  Is this a clue?
    ·         Multiple style sheets per topic.  Apparently only one style sheet can be used per topic.  In my project, I have two types of topics, called schema pages and table pages, with a style sheet for each.  The same master page is used for both types.  The master page uses the tables style sheet.  Therefore, the tables topics (the ones with the dropped style) use only one style sheet, but it is specified in both the master page and the topic itself.   Is this a problem?
    ·         Reviewing the style sheet in RH.  When I inspect the style sheet through RH’s Project Manager, the table data and table row styles appear under “Other” and not under “Table.”  Is this a clue?
    The special formatting of the description cells in our table-heavy project is essential.  I’ve spend days trying to troubleshoot this problem and would appreciate any help anyone can offer.

    Hi jensei,
    Thanks for that. When I took that screenshot - bizarrely those cells all had exactly the same html. I can't easily prove that now as I have tinkered with that test page quite a lot since. I started thinking maybe I could do something "clever" with table styles to save me the joyless task of manually editing all tables in my project. In the end I gave up and decided to devote a couple of hours to going through and reformatting all tables with a font that was the same size and of a similar type face to the rest of the page. Obviously not an option in your monster project, but it worked for me.
    I've seen so many random results here that I can't get my head around what exactly is going wrong - for me the issue seems connected with style = none in a table.
    Anywhere else on the page, style = none yields text with font = Tahoma 10pt.
    But in the table cells that text sometimes rendered ok in CHM, but often it would randomly appear far larger.
    So for me the cure was to format all tables with font = arial 10pt (rendered result is similar, but somehow different enough to stop the erroneous size rendering).
    That's as far as I got - as usual with time being very precious, I've had to curb my geekiness and crack on.
    Cheers,
    Andy

  • Unable to get page with video to validate and need help getting text to display correctly

    I need advice on getting a page to validate that has a video. I didn't make the video, but all other pages vallidate that don't have it.
    Also, when testing viewing on ie with large font view the navigation bar on the left doesn't display correctly. I've tried all fixes I can think of, but none work.
    As always any advice is greatly appreciated.
    page can be viewed at: http://www.lotusvalleydesigns.com/previewpages/services.html

    Eeeeeuuuuu yuck.  You know, I've never used that setting in IE and I don't think I ever will again.
    Look what happens to CNN's website when you do that.
    http://CNN.com
    I think IE sucks and this is another fine example of MS's zeal to pile on user options that no one should use.  If MS made their zoom feature optional the way Firefox does, nobody would ever need this atrocious "accessibility" option.
    Good luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • I need help getting my Thunderbolt display to work with Windows 7 through Bootcamp.

    I recently bought a thunderbolt display and it works great in my Mac environment.  But I recently added Bootcamp and Windows 7 (I need since my Broker Dealer only uses Internet Explorer).  Unfortunately, I can't seem to get Windows to recognize my Thunderbolt display.  Today, I spent 2 hours with a very kind advisor from Apple Support but we didn't have any success.
    Here's my setup:
    MacBook Pro (purchased new in 2011) with i7 processor
    Thunderbolt Display
    Lion OS (all updates installed)
    Bootcamp with Windows 7 Ultimate 64-bit (all updates installed)
    With the help of Apple Support, I downloaded and reinstalled (through the repair option) all the Bootcamp drivers.  I shut down my computer, plugged in the Thunderbolt display, turned it on and booted into Windows 7.  When the Windows Welcome screen appears, it shows on my Thunderbolt display for about 2-3 seconds.  But the thunderbolt quickly goes black.  My MacBook Pro changes to a 640x480 resolution and the Thunderbolt remains blacked out--with no signs of even a single flicker.  Once the computer finishes the start-up, my MacBook Pro remains in a 640x480 resolution, with no option to change the resolution (it's grayed out in Windows control panel).  If I unplug the Thunderbolt cable from my MacBook pro, the high resolution of my MacBook pro snaps back to normal.
    To me, this seems like some type of driver problem but I must be missing something simple because it appears that Thunderbolt works with Bootcamp and Windows 7--based on some of the readings I've found here in the Apple support community.  I'm most appreciative of anyone's help here.

    Moving the discussion to OnLocation
    Thanks,
    Atul Saini

  • Need help scrolling dynamic content from XML

    I am trying to make a photo gallery and I have succeed in
    importing the pictures from XML into Flash. There are still two
    problems:
    1. The content is loading into a movieclip and I tried to
    place a scroll pane on the stage to adding scrolling capabilities.
    I set the parameters to control the movieclip that holds the
    thumbnails but it is not making a scroll bar. I can see the
    pictures inside of the scroll pane but it will not scroll to show
    the rest of the pictures.
    2. I can not figure out how to space the thumbnails evenly. I
    made a variable and multiplied the x position of each picture by it
    but there are large differences between landscape and portrait
    pictures.
    Thanks for the help

    You need to switch from using loadMovie to using the
    MovieClipLoader object. This object has a listener called
    "onLoadInit" that allows you to get the size of your photo when it
    comes in, but before it appears on stage, so that you can adjust
    its placement. Check out the help docs for info on usage.
    WL

  • Need help choosing processor and display for X240 please

    I'm about to purchase an X240 today or tomorrow and, after doing multiple forum searches and reading a 67-page X240 thread elsewhere, I would really appreciate some help choosing a processor and a display. If it makes a difference, I've decided on:
    *Windows 7 Pro 64 bit
    *8GB of RAM
    *256GB SSD
    I intend to use the laptop for viewing/editing Word documents and Powerpoint presentations, streaming movies, and streaming recorded lectures. I'm not sure what lecture viewer/player my school uses yet, but I do know that it has options to play the lectures at accelerated speeds (1.5x, 2x, etc.) and that I will definitely need to use this feature. I'm not computer literate enough to discern whether the processor type has any effect on this. I will use an external drive if I need to download and save any lectures. I also plan to do some infrequent and basic photo editing with Windows Photo Gallery and MS Paint. I'm willing to pay extra for a smoother/faster experience, but I don't want to go with the i7 processor if it's overkill for my purposes or if there are other significant trade-offs besides price.
    As for display, I'm torn between the regular HD (1366x768) IPS Non-touch, regular HD IPS Touch, and FHD IPS Touch.  Re: HD vs FHD, I've been using a 1280x800 13.3" non-IPS display for the last 6 or 7 years, and I'm pretty happy with it except for the limited viewing angles. Wouldn't regular HD on a 12.5" screen be a step up in resolution? A lot of the reviews of the regular HD on the X240 express disappointment with the "low" resolution, but I don't know if it's really that bad, or if people just have much higher expectations/standards than I do. I'm leaning towards regular HD because my glasses are so strong that increasing the sharpness of what I see also has the side effect of making things appear smaller (minimization error), so I'd probably have to mess with text/DPI scaling if I went with FHD, which isn't a perfect solution from what I've read. I'd only consider getting a touch version if I need FHD (since it doesn't come in non-touch), or if it somehow makes the HD display sharper or more vibrant--I have no intention of actually using touch features.
    Apologies for the length, and thanks in advance for any advice! :-)

    Actually I have been doing further research and I personally would either go with the 2.6GHz NON RETINA MBP or cough up the cash and go all out on a 2.6GHz RETINA MBP and upgrade the RAM to 16GB  and upgrade to 768GB Flash storage, I am a student as well so will get a discount which will help.
    My fears are that if I get the Retina model I will not be able to upgrade it even further, I want to keep the computer for at least a good 5 years, during those 5 to 8 years will the current upgrades be enough to keep up with the top games and programs etc? Also I have read that repairing the Retina display model is very diffcult  and it can malfunction commonly, so I am guessing I should get apple care on top of it just to be sure with this particular model?
    I am assuming that they they will bring out the new models out next year and all the chinks and bugs of the current Retina model will be fixed so to speak, of which I have read there is a few... Would it be worth buying the NON RETINA MBP and then selling and upgrading to an improved RETINA MBP model next year?
    Finally if i back up my files on a hardrive would I have to use the USP SUPER DRIVE to install files onto the RETINA MBP or can i directly do this without the USP SUPERDRIVE?
    Thanks

  • Need Help Centering Page Content

    Hi, I have added a white box behind my main page content but the content is not centered within the box. It seems to be on the left. There are a number of different style sheets and I need to find out which style is affecting how the content is positioned.
    1. In this link below I’m not sure what is making the content go to the “left”. I need all of the thumbnails to be centered in the white area. That is what I need to find out first. What is the best way to find what is causing the thumbnails to go to the left? Is there an easy way to narrow down what is causing the thumbnails to go to the left?
    If I select “ul.work li” I notice it is set to (float: left). If I change it to (float: right) the thumbnails all move to the right. but if I set it to (float: none) the thumbnails all line up vertically. Not what I want.
    http://www.buzzfx.ca/2d_character.html
    In the homepage I also need to have all of the content centered.
    http://www.buzzfx.ca
    2. Also, how would I move the white box up to align with (touch the bottom) of the grey header?

    Thanks John, I managed to watch a good tutorial that set me straight.
    So back to the initial question. I am trying to center the content in the body but it seems to be aligned "left". Using Firebug, I think I have found the part that needs changing.
    1. At this link: http://www.buzzfx.ca/2d_character.html
    2. I hovered over the thumbnails until I found: <ul class="work fullwork clearfix">
    3. I then looked in the style and I believe it is this code below in "bold italics" that I need to edit to get the "content" to be centered but I am not sure how specifically to fix it/
    Q. Why does "margin-left: 40px;" have a strike through it?
    Q. Is "margin-left: 40px;" the reason the content is aligned "left"?
    Q. Could I not just "center" the contents instead of have it positioned from the "left"? Please explain!
    I would be very grateful if someone could look at my page in Firebug to tell what the best way is to center the body content.
    .clearfix:after {   clear: both;
       content: ".";
        display: block;
        height: 0;
        line-height: 0;
        visibility: hidden;
    ul.work {
    margin: 0 -15px;
    ul, ol {
    margin-left: 40px;
    h1, h2, h3, h4, form, table, ul, ol, p, dl, blockquote, hr {margin-bottom: 30px;
    text-align: left;
    ol, ul {
    list-style: none outside none;

  • Need help in query to display lot and serial numbers for a Wip Job Component

    Hi ALL,
    I have a requirement as below.
    I need to display lot and serial numbers for a Wip Job Component, i have a xml report in that for each wip job component i need to check whether it is a lot control item or serial control item based on that i need to display some data. so can you please help me to get the query to indentify the lot and serial number for a wip job component.
    Thanks

    Thank you for replying Gordon.  I did not remember I had asked this before.  I no longer have access to the other account. 
    What I need on the query is that I want  a list of items with the on order quantity and when we are expecting this order to be received.  The receiving date is based on the PO delivery date.  The trick here is that  I need to Master sku to show the delivery date of the component sku.  In my scenario all components have the same delivery date for the Master sku.  If there are mulitple delivery dates because each warehouse is getting them on a different date then I want to get the delivery date for that warehouse.
    Let me know if this is possible and if yes please guide towards a query for it.
    Thank you.

  • Need help: php saprfc

    Hy all!
    I get this error message:
    Warning: RFC Error Info : Key : RFC_ERROR_SYSTEM_FAILURE Status : Message : Value for ID 'CODEPAGE' not found Internal: in D:\USERDATA\lakatba\programs\xampp\htdocs\saprfc\test2.php on line 30
    Exception raised: NO_DATA_FOUND
    Can you help me?
    my script:
    +$login = array (
                   "ASHOST"=>"********",
                   "SYSNR"=>"**",
                   "CLIENT"=>"***",
                   "USER"=>"*******",
                   "PASSWD"=>"******",
                   "CODEPAGE"=>"1100");
    $rfc = saprfc_open ($login );
    if (! $rfc ) { echo "RFC connection failed"; exit; }
    //Discover interface for function module SWNC_COLLECTOR_GET_AGGREGATES
    $fce = saprfc_function_discover($rfc,"SWNC_COLLECTOR_GET_AGGREGATES");
    if (! $fce ) { echo "Discovering interface of function module failed"; exit; }
    //Set import parameters. You can use function saprfc_optional() to mark parameter as optional.
    //u2014u2014u2014- Import parameters
    saprfc_import ($fce,"COMPONENT","TOTAL");
    saprfc_import ($fce,"ASSIGNDSYS","TST");
    saprfc_import ($fce,"PERIODSTRT","04.07.2011");
    saprfc_import ($fce,"PERIODTYPE","W");
    saprfc_optional ($fce,"SUMMARY_ONLY","");
    saprfc_optional ($fce,"FACTOR","");
    //Fill internal tables
    saprfc_table_init ($fce,"TASKTYPE");
    //Do RFC call of function SWNC_COLLECTOR_GET_AGGREGATES, for handling exceptions use saprfc_exception()
    $rfc_rc = saprfc_call_and_receive ($fce);
    if ($rfc_rc != SAPRFC_OK) { if ($rfc == SAPRFC_EXCEPTION ) echo ("Exception raised: ".saprfc_exception($fce)); else echo (saprfc_error($fce)); exit; }
    //Retrieve export parameters
    $rows = saprfc_table_rows ($fce,"TASKTYPE");
    for ($i=1;$i<=$rows;$i++)
         $TASKTYPE[] = saprfc_table_read ($fce,"TASKTYPE",$i);
    //Debug info
    saprfc_function_debug_info($fce);
    saprfc_function_free($fce);
    saprfc_close($rfc);+

    Hello,
    I think that according to [ this|http://help.sap.com/saphelp_sm32/helpdata/en/0a/5d453cf1fcc85ee10000000a11402f/content.htm] you should use a code page 1160.
    Let us know if it works

  • Need help in file content conversion complex structure

    Hi Guys ,
    Iam new to this file content conversion , Please let me know whether below requirement is possible .if yes than how ?
    Inbound XML file from Proxy
    <Data>
      <keyfield1>0011</keyfield1>
      <keyfield2>0012</keyfield2>
      <Keyfield3>0013</Keyfield3>
      <field1>Test1</field1>
      <field2>testfield1</field2>
      <field3>0001</field3>
    <Data>
      <keyfield1>0021</keyfield1>
      <keyfield2>0022</keyfield2>
      <Keyfield3>0023</Keyfield3>
      <field1>Test2</field1>
      <field2>testfield2</field2>
      <field3>0002</field3>
    output pgp flat file .
    pgp file format should be as below after file content conversion
      0011|0012|0013|Test1||||||
      0011|0012|0013|Testfield1||||||
      0011|0012|0013|0001||||||
      0021|0022|0023|Test2||||||
      0011|0012|0013|Testfield2||||||
      0011|0012|0013|0002||||||
    thanks a lot .
    Regards
    Prabhu

    Hi.
    Try this.
    First you need to use a message mapping  and create a target structure to convert a similar output  structure that do you want.  like this
    <Target>
    --  Field1
    --  Field2
    --  Field3
    --  Field4
    --  Field5
    --  Field6
    --  Field7
    --  Field8
    --  Field9
    </Target>.
    Then map
    keyfield1-> Field 1 ,keyfield2-> Field 2 , keyfield 3---> Field 3
    map  field1-> field4 .. for the others fields duplicate the Target node (right click)  and  map map  field2-> field5 ..etc.
    For the field 5 until field 9 map with constant ("'')
    Then in you receiver comunication channel put simple parameters. 
    Target.fieldSeparator = |
    Target.endSeparator = 'nl'
    Regards.

  • I need help connecting a 27" display to a mid2007 intel 24" imac

    In the store I explained which model I was using and they insisted the mini displayport cable was compatible (it's not a thunderbolt display btw)
    but the port on my imac does not match the cable and either I need an adapter or I need to return the display.

    There were no iMacs with mini-DisplayPorts in Mid 2007. Your iMac has a mini-DVI port, and as far as I know, it cannot be connected to that display. Return the adapter and the display. And speak to the store manager about retraining for the floor staff in the store. I would also ask for a discount for future purchases as well for this silly run around that you have gotten.

  • NEED HELP ASAP-populate contents from 5 tables into one master table

    Scenario:
    Assign a new_customer_id to each existing customer of our three business. A master lookup table (M) was given to me with pre-populated (SEQ_NOs), (NEW_CUSTIDs), and NULL in (OLD_CUSTIDS). My duty is to
    (1) Fill the M.OLD_CUSTID column with existing customer ids from T1, T2, T3 (uniquely).
    (2) Once the master lookup table is filled, add (SEQ_NO), and (NEW_CUSTID) column to the 3 existing customer tables to hold the new information.
    (3) At the end of the project, remove the existing customer ids from the T1, T2, T3.
    My problem is that there are no associations between the master table and existing customer tables (no keys). The code would be:
    update M
    set OLD_CUSTID= (select OLD_CUSTID from T1 where M.??=T1.??)
    Since the M.OLD_CUSTID and T1.NEW_CUSTID are NULL at this stage, and there are no keys to tie them together. I don't know how to fill both tables. Can someone help me ASAP? Thanks in Advance.
    -ORACLE Newbi

    I am building a "MASTER LOOKUP TABLE" to map the NEW_CUSTID and the OLD_CUSTID. The columns in this M table are:
    CREATE TABLE MKT.M
         "LOOKUP_SEQ" INTEGER, <=== from sequence
         "NEW_CUSTID" CHAR(6), <=== populated with strings given by biz analyst
         "OLD_CUSTID" INTEGER, <=== need to dump all existing custid (unique)
         PRIMARY KEY ("NEW_CUSTID") RELY NOVALIDATE
         ORGANIZATION INDEX TABLESPACE "MKT"
    Table T1/T2/T3 are slightly different but they all contain:
    CUST_ID INTEGER
    CUST_NAME CHAR(50)
    CUST_SINCE DATE
    CUST_ADDR1 CHAR(30)
    CUST_ADDR2 CHAR(30)
    DITY CHAR(30)
    STATE CHAR(2), etc.
    Since M is the lookup table for old-to-new customer ID mapping. There are no need to associat other than just enter the old IDs into the M table.
    Thanks for helping me. Any suggestion?

  • Need help troubleshooting an inoperable display damaged by water

    I have a Macbook Pro 5,1 Model 1286 running OS X 10.5.5. Water leaked onto the Macbook from overhead pipes while I was away from home and the display no longer works. The water entered it through the keyboard. Everything else works perfectly (even the iSight camera) when testing it on an external display. It's been on the shelf for years and I've finally gotten around to trying to trade it in for cash but I was wondering if an inexpensive repair would be possible so I could increase its value. Does anyone have any idea what the problem could be and how I could troubleshoot it?
    Thanks in advance for any help!

    "by the time I returned from my vacation, all the water had evaporated but I could tell where it had landed and dried up."
    So that's evidence that you can easily see from the outside. Once the water is inside on the logic board it wicks itself between the sub millimeter spaces between component chips and their attachments to the logic board.
    Here's the GPU on a logic board that was in a water spill.
    So you can see the corrosion on the large chip in the center of the image. The corrosion is white and blue/green. (Compounds of copper). The stuff on the top is not so bad as most of it is under the heat sink. The worst stuff is the evidence between the chip and the logic board itself. This would point to corrosion on the hundreds of attachments under the chip.
    Here's a more extreme example. This one was in a rainstorm in Thailand. Oddly enough I was able to save the second one but the first one is still dead!
    So when you're inspecting your logic board look for green and blue corrosion, especially in the LVDS connector (Video connection to the LCD.)

  • Replaced pc need help transferring iTunes content

    Just replaced my pc, how do I make my new pc the primary on iTunes and have all the content transferred to the new pc?

    There are many helpful articles about this on the internet. Start here.
    http://www.google.com/search?client=safari&rls=en&q=tranfer+itunes+library+to+a+ new+pc&ie=UTF-8&oe=UTF-8

Maybe you are looking for

  • Photoshop crashes when I use adjustment layer HUE

    Every time I use adjustment layer for HUE/Saturation. I put the eye dropper on a specific color and move it right or left and it crashes. Wants me to reopen and try again

  • Size of images edited in Photoshop

    When I select an image in Lightroom and edit it in Photoshop, the image size is 72.8M, 16 bits/channel, and 240px/in. In order to convert to a jpeg file, it is necessary to change the file to 8 bits/channel, but that reduces the size of the file to 3

  • Allowable values of super/subtypes

    When I run the Database design transformer in Designer6i for a table with subtypes and sub-sub types (so one table which contains the sub- and supertypes, not more than one table) I get a table definition where the field 'table alias_type' is added.

  • Hide previous conversation messages in the new upd...

    Since Skype's new update, I've found that every time I click on a conversation, Skype freezes up and goes into "Not Responding" for a good minute or two before it finally goes through. This morning it even stopped working & I had to restart it, which

  • Dock unresponsive, folder icons do not appear

    Hello, All the following problems happened last night, the computer still works.. but it's slow, and erratic. -My dock will not appear (it's not set to hiding) -all folder icons are invisible -previously set hot corners do not work -relaunching finde