need help!

need help!

I am trying to working on uploading pages and I managed to do it except when I define the path which the file would go to,the file is not saved there and I tried many times but with no use
This is my code:
<html>
<head>
<script src=" http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="jquery.uploadify.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="uploadify.css">
<script>
$(document).ready(function(){
$("#file_upload").uploadify({
'uploader':'uploadify.swf',
'scipt':'uploadify.php',
'cancelImg':'uploadify-cancel.png',
'folder':'uploads',
'auto':false,
'multi':true,
'queueSizeLimit': 2,
'onQueueComplete':function(event, queueSizeLimit){
  alert('You can only upload '+queueSizeLimit+' files at once!');
return false;
},
'onUploadComplete': function(file, data){
alert("The file "+file.name+"\nSize: "+file.size+" bytes"+"\nFilepath: "+file.filePath);

}



});

});
</script>

</head>
<body>
<form id="formUp" name="formUp" action="">
<input type="file" id="file_upload" name="file_upload" />
<a href="javascript:$('#file_upload').uploadify('upload','*')">Upload</a>
</form>
</body>






</html>