I have just purchased a script called smsscript. The readme file states that I have to upload my database ( an sql extension ) to my database server. Exactly how is that done ? I have already sent up the mysql database on my godaddy account. Thanks in advance for your help.
2 ways 1. Log into your server using ssh, then execute the .sql script at the mysql database like so mysql -h[hostname or ipaddress of mysql server] [databasename] -u[username] -p[password] < thescript.sql 2. Use phpmyadmin to execute a sql command (click the little sql icon) and paste the contents of the .sql file into it. I would suggest using option 1. an example command for option one could be (once logged into your linux server, with the .sql file in the directory you are in) mysql -h mysql.mydomain.com mydatabase -u myuser -p mypassword < thescript.sql let me know how you get on