laurentius kevin
laurentius kevin

Reputation: 47

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?

Upvotes: 1

Views: 60

Answers (1)

iadd
iadd

Reputation: 93

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

Upvotes: 1

Related Questions