GET is limeted by the lenth of URLs alowed by the client and server, which ever is smaller.
POST is not limeted on any configuration I have seen.

A problem will be transfer and processing times. If each line is 16 characters on average then you will be sending 123KB (more when characters that have to be % encoded are used) Depending on the client connection that could take 30 seconds to a minute on a modem. After the server gets the data I assume it will have to 7000 update/insert SQL statments, that could take a decent lenght of time.
This could easily add up to a few minutes of time, not a lot from the programers perspective but it's a long time to sit and wait from a users perspective.

In reply to Re: Uploading Excel data into MySQL via a browser by Ven'Tatsu
in thread Uploading Excel data into MySQL via a browser by La12

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.