Hi, i'm making a app that use camera image and send it to a php webservice. I've two files, a csv and a jpg.
I've read post and post, page and page of code but i don't undestand how to do this!
I've four variables:
- jpg directory
- jpg filename
- csv directory
- csv filename
In my web server i've create a simple php page for receve files:
for send i use enctype="multipart/form-data"
What is the simplest code to send this two files??:BangHead:
I've read post and post, page and page of code but i don't undestand how to do this!
I've four variables:
- jpg directory
- jpg filename
- csv directory
- csv filename
In my web server i've create a simple php page for receve files:
B4X:
<html>
<?php
do {
if (is_uploaded_file($_FILES['image']['tmp_name'])) {
// Controllo che il file non superi i 18 KB
if ($_FILES['image']['size'] > 18432) {
$msg = "<p>Il file non deve superare i 18 KB!!</p>";
// break;
}
// Ottengo le informazioni sull'immagine
list($width, $height, $type, $attr) = getimagesize($_FILES['image']['tmp_name']);
// Controllo che le dimensioni (in pixel) non superino 160x180
if (($width > 160) || ($height > 180)) {
$msg = "<p>Dimensioni non corrette!!</p>";
// break;
}
// Controllo che il file sia in uno dei formati GIF, JPG o PNG
if (($type!=1) && ($type!=2) && ($type!=3)) {
$msg = "<p>Formato non corretto!!</p>";
// break;
}
// Verifico che sul sul server non esista giÃ*n file con lo stesso nome
// In alternativa potrei dare io un nome che sia funzione della data e dell'ora
if (file_exists('uploads/'.$_FILES['image']['name'])) {
$msg = "<p>File giÃ*sistente sul server. Rinominarlo e riprovare.</p>";
// break;
}
// Sposto il file nella cartella da me desiderata
if (!move_uploaded_file($_FILES['image']['tmp_name'], 'uploads/'.$_FILES['image']['name'])) {
$msg = "<p>Errore nel caricamento dell'immagine!!</p>";
$msg = "<p>Ho caricato il file!!</p>";
// break;
}
}
} while (false);
echo $msg;
?>
</html>
for send i use enctype="multipart/form-data"
What is the simplest code to send this two files??:BangHead: