I am trying to send data to my PHP script to handle some stuff and generate some items.
$.ajax({ type: \"POST\", url: \"test.php\", data: \"
Try sending the data like this:
var data = {}; data.album = this.title;
Then you can access it like
$_POST['album']
Notice not a 'GET'