Birisi bana yardımcı olabilir umuyoruz.
I alanlar kümesi oluşturur harici bir php yüklediğinizde, ben hiçbir sorunları var, ama sonra oluşturulan formu göndermek, i değişkenler erişemiyor.
Kod i kullanıcı var:
Için harici dosya yüklemek:
$.ajax({
type: "POST",
url: "product-insert.php",
contentType: "application/x-www-form-urlencoded",
global: true,
processData:true,
dataType: 'html',
data: {num_filas: $("#num_filas").val()},
success: function(html){
$("#destino").html(html);
alert(html);
str = $("ofertas").serialize();
},
error: function(){
},
complete: function(){
}
});
<form action="ofertas.php" method="post" enctype="multipart/form-data" name="form-ofertas" id="ofertas" >
<div id="destino"></div>
Yüklenen dosya bu kodu vardır:
echo '<input name="campo" type="hidden" value="valor" />';
ve form almak php dosyası bu kodu vardır:
die("campo: ".$_REQUEST['campo']);
Gerçekten bir sürü yardım takdir edecektir.
Şimdiden thnx.
Yannick