I already have the database created, and when I go to create a table within it, It's giving me an error of
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Â INT unsigned PRIMARY KEY AUTO_INCREMENT, Â Â Â
UserID
 INT NOT NULL,  ' at line 2
CREATE TABLE `lists`
( `ListID` INT PRIMARY KEY AUTO_INCREMENT,
`UserID` INT NOT NULL,
`ListURL` VARCHAR(150)
)
I've tried simple things, and I've added those backticks because I've seen that as a solution to a lot of issues on here, but it's still giving me back the same error. Not sure what the issue is.