Jump to content

PARSE ERRORS!!


xyn

Recommended Posts

you have )" instead of ")


[code] $query = "INSERT INTO inbox (user, mail, type, artist, song, mesg, date, time, ip) VALUES ('$name',
'$mail',
'Song Request',
'$arti',
'$song',
'NULL',
'$date',
'$time',
'$ip')";[/code]


should be

[code] $query = "INSERT INTO inbox (user, mail, type, artist, song, mesg, date, time, ip) VALUES ('$name',
'$mail',
'Song Request',
'$arti',
'$song',
'NULL',
'$date',
'$time',
'$ip'");[/code]

havn't looked at the rtest of code below but thats 1 error mate :)

Regards
Liam
Link to comment
https://forums.phpfreaks.com/topic/13449-parse-errors/#findComment-51976
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.