You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the loop on line 16 in "my-sql-export (backup) database.php" is not necessary since it already loops through the columns on line 19.
for ($i = 0, $st_counter = 0; $i < $fields_amount; $i++, $st_counter=0)
It wont cause any issues, since the next statement goes to the next row, so after you've gone through the first column in this loop, all the rows would have been visited.
The text was updated successfully, but these errors were encountered:
In the line 22, ($TableMLine[1]=str_ireplace('CREATE TABLE ','CREATE TABLE IF NOT EXISTS ',$TableMLine[1])) is not working.
The string CREATE TABLE isn't replace with CREATE TABLE IF NOT EXISTS.
the loop on line 16 in "my-sql-export (backup) database.php" is not necessary since it already loops through the columns on line 19.
for ($i = 0, $st_counter = 0; $i < $fields_amount; $i++, $st_counter=0)
It wont cause any issues, since the next statement goes to the next row, so after you've gone through the first column in this loop, all the rows would have been visited.
The text was updated successfully, but these errors were encountered: