how to copy files in php - the copy() function
copy(”originalfile.php”, “newfile.php”);
copy(”originalfile.php”, “newfile.php”);
update cityfn set city = LOWER(city);
update tablename set column_name = replace(column_name, ‘find string to replace’, ‘replace with this string’);
Forr example, if you have asterisks in your data you want to delete:
update cities set city = replace(city, ‘*’, ”);
insert into oldtable select * from newtable;
create table newtable asselect * from oldtable where 1 group by [specific column];
“delete from tablename where columnname like ‘%text to match%’;
Make sure you know the text is contained in only the rows you want to delete otherwise MySQL may delete other database rows you didn’t want deleted