Why not just add a display_date column to the comic_issues table in the database, reference that in your initial query and forget current_online? And create a unique index on the display_date column so you can't have two comics interfering with each other.
SELECT max(issue_id),
issue_title...
I should have mentioned I am using fopen() to open an FTP session and read the file. This is NOT a time issue, as I am resetting the time value each pass. It is strictly a size issue, and because the server allows only about 8Mb of data, I'm getting only 2/3 of the file read and parsed. So, the...
I have a 12Mb delimited text file I need to read, parse and load into a MySQL database. The server is set to allow 8388608 bytes before it runs out. Any suggestions on how I can bypass the memory size limit? For example, can I grab just half the file at a time, or does PHP have a command to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.