Re: I need sql dump conversion help!
[quote="hoxxy":1ihzp2ry]problem is I know nothing about sql but need to convert the sql dump file to a installable sql through an install page ie install.php[/quote:1ihzp2ry]
A MySQL dump [b:1ihzp2ry]IS[/b:1ihzp2ry] installable, at least in the sense of it being a plain SQL-file which can be executed.
Depending on which mode it was exported, you simply need to import it with the correct user. Maybe you need to create the database first.
[code:1ihzp2ry]CREATE DATABASE /*!32312 IF NOT EXISTS*/ `myNewDB` /*!40100 DEFAULT CHARACTER SET latin1 */;[/code:1ihzp2ry]
cheers!
- leonard