I am trying to install a script from http://www.awesomephp.com/?Lyrics
I ran in a problem as it started to give me a Notice: undefined index in line 28...i changed the code to look like
if (isset($_GET['message']) && $_GET["message"] != NULL )
{
$message = $_GET["message"];
}
instead of
if($_GET['message'] != NULL){$message = $_GET['message'];}
Now all running without any Notices or Errors, it's giving this display message in browser "Database Error, Sending Error Notice to Administrator."
I don't know SQL, so how to connect database to this script......I installed latest version of wamp btw to run localhost.
Also are there any free lyrics scripts out there?
Thank You very much.