It looks like you're new here. If you want to get involved, click one of these buttons!
$.post(
'_controllers/projects.php',
{action: "get_project", id: project_id},
function(data) {
var title = "<h2>Modify the details for this project and click Update to save any changes.</h2>";
$("#edit-project").html(title + data);
$("#upd_proj_files").uploadify({
'uploader' : '/_js/uploadify/uploadify.swf',
'cancelImg' : '/_js/uploadify/cancel.png',
'script' : '/_controllers/files.php'
});
}
);