Questions tagged as 'upload'

0
answers

Upload image to MySQL DB using PHP

1. My PHPupload Image Script <?php // SERVIDOR ONDE AS IMAGENS ESTÃO SALVAS $caminhonoservidor='imagens'; // este caminho será gravado na variável imagem $caminhotemporario= isset($_FILES['imagem']['tmp_name']) ? $_FILES['imagem']['tmp_nam...
asked by 23.12.2017 / 02:34
0
answers

Save File on Physical Path

I'm uploading an image I get via form using C # ASP.NET. My code is working like this: [HttpPost] public ActionResult UploadFile(HttpPostedFileBase file) { try { if (file.ContentLength > 0) {...
asked by 29.11.2017 / 18:22
0
answers

Upload with php - problem with charset

I have a problem that has been disturbing me for some time. I have a page for simple image upload, the page is on charset utf-8 and the firebird database on iso8859-1. The reason for the system being in utf-8 is that all the plug-ins I use fr...
asked by 28.11.2017 / 20:59
0
answers

Automatic file upload in a directory

I wonder if it's possible to upload all the files in a directory? my application is web, installed on an external server.     
asked by 24.10.2017 / 15:33
0
answers

Error uploading files in PHP

Data that already exists is displayed, but I can not register new data. function inserirCliente(){ $retorno=""; $conecta = DBConnect(); if (isset($_POST['enviaCliente'])) { //só para a imagem if...
asked by 02.11.2017 / 13:04
0
answers

I want to display an image that I have registered in the database

<?php $result = ExibirDados(); while ($resultado = mysqli_fetch_array($result)) { ?> <tr> <td><img <?php echo "src=upload/".$resultado.">"; ?> </td>...
asked by 02.11.2017 / 12:27
0
answers

Uploading files

I'm testing the free account of S3 and Glacier, Upload the files in S3 so that it is automatically transferred to Glacier, but 2 days ago and does not show the files that I uploaded in s3, it takes even to appear or Do you have any problems?   ...
asked by 18.10.2017 / 18:12
0
answers

Submit File with Form Data

I'm trying to send files without using the submit of the form. I have verified that%% of% is possible, but I have a problem. Apparently, the file is forwarded, since with the variable " formData " I can get the data from the file, h...
asked by 02.10.2017 / 20:21
0
answers

How to delete an image from the Storage laravel 5.2 folder?

I'm using this code to upload image is all working my doubt and in the condition if to delete the old image I have to leave a default.jpg image as default plus my condition if deleting this image. my question and how can I leave this image alway...
asked by 21.09.2017 / 20:01
0
answers

Get path of image and not blob: //

So we've developed an app with Cordova, and now I need to upload an image to a web service from a third party. I installed the cordova-plugin-camera and can get an image from the Gallery or Camera, and insert the preview into the DOM. But the im...
asked by 14.09.2017 / 18:47