Jump to content
php.lv forumi

Nodot pareizi $_FILES


vostro

Recommended Posts

Labvakar visiem, kā pareizi nododas bilde.

 

HTML

<input type="file" id="filename" class="filename" />

 

JS

var filename = $("#filename").val();
$.ajax({
       	type: 'POST',
       	url: '/news/attachPost',
       	data: { filename : filename},
       	dataType: "json",
       	success: function(msg){
           	if(msg.error){
               	$('#errorAttach').fadeIn(1000, function (){
                   	$('#errorAttach').html(msg.error);
               	});
               	return;
           	}
         	alert(msg.image);
       	}
     	});

 

POST pieņem viss kārtībā

PHP

$image = $_POST[''filename"];

 

Ir iespēja dabūt tā?

$image = $_FILES["filename"];

Edited by vostro
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...