Posts by manitoramos • 43 points
4 posts
-
1
votes0
answers63
viewsQ: Upload File, one at a time
I have a doubt about how to send one file at a time after the previous one is complete (I have a multiple input) but sending one at a time but (if the files are large sends both at the same time and…
-
1
votes1
answer57
viewsA: Ajax sending _POST without maximum character
The mistake I had was that it would pass & in the post and ajax confused it as another parameter and the parameter I wanted to receive the text only showed me the characters up to the &.…
-
2
votes1
answer57
viewsQ: Ajax sending _POST without maximum character
In this ajax the post sends more than 1000 characters: $.ajax({ url: 'inserir.php', type: 'POST', data: { inseason: document.getElementById('comment').value }, success: function(result) { alert('the…
-
-1
votes1
answer90
viewsQ: Read file does not insert accents
if(isset($_GET['rf'])){ $filename=$_GET['rf']; //$path=$_SERVER['DOCUMENT_ROOT'].'/'.$filename; //echo $path; if(file_exists("subs/" . $filename)){ header('Content-Type: text/plain');…