简体   繁体   中英

HTML and PHP post value is limited

I want to upload 2 table from local sql server 2000 to hosted mysql. First table has 17 columns and 680 rows, and the other 10 columns and 8071 rows.

I tried offline first using xampp mysql and it works, all the data inserted to the new table in mysql when i checked in phpmyadmin. And because of SQL Server 2000 was not supported in my web-hosting provider, so I decided to upload only the php files to catch the post values that runs on localhost xampp then insert to hosted mysql server. That works, but limited to 59 row on first table and 100 row on second table. The rest of row is failed to insert. I tried to check print in php for row 200+ and nothing show up. that means php didn't catch all the row.

So my question, Is it true that a hosted php limited for getting value? And what should I do?

You need to set the value of upload_max_filesize and post_max_size in your php.ini. Check here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM