I'm try to implement image upload

image and data are not stored into the data base

export class TestPage {
   name:string="sourav";
    public serverUrl = "http://mydmain.com/sourav/append/includes/classes/postads.php";

    public isUploading = false;
    public uploadingProgress = {};
    public uploadingHandler = {};
    public images: any = [];
    protected imagesValue: Array<any>;

    constructor(private sanitization: DomSanitizer, private actionSheetCtrl: ActionSheetController, private camera: Camera, private file: File, private alertCtrl: AlertController, private toastCtrl: ToastController) {
    }

    public uploadImages(): Promise<Array<any>> {
        return new Promise((resolve, reject) => {
            this.isUploading = true;
            Promise.all(this.images.map(image => {
                return this.uploadImage(image);
            }))
                .then(resolve)
                .catch(reason => {
                    this.isUploading = false;
                    this.uploadingProgress = {};
                    this.uploadingHandler = {};
                    reject(reason);
                });

        });
    }

    public abort() {
        if (!this.isUploading)
            return;
        this.isUploading = false;
        for (let key in this.uploadingHandler) {
            this.uploadingHandler[key].abort();
        }
    }

    // ======================================================================
    protected removeImage(image) {
        if (this.isUploading)
            return;
        this.util.confirm("Are you sure to remove it?").then(value => {
            if (value) {
                this.util.removeFromArray(this.imagesValue, image);
                this.util.removeFromArray(this.images, image.url);
            }
        });
    }

    protected showAddImage() {
        if (!window['cordova']) {
            let input = document.createElement('input');
            input.type = 'file';
            input.accept = "image/x-png,image/gif,image/jpeg";
            input.click();
            input.onchange = () => {
                let blob = window.URL.createObjectURL(input.files[0]);
                this.images.push(blob);
                this.util.trustImages();
            }
        } else {
            new Promise((resolve, reject) => {
                let actionSheet = this.actionSheetCtrl.create({
                    title: 'Add a photo',
                    buttons: [
                        {
                            text: 'From photo library',
                            handler: () => {
                                resolve(this.camera.PictureSourceType.PHOTOLIBRARY);
                            }
                        },
                        {
                            text: 'From camera',
                            handler: () => {
                                resolve(this.camera.PictureSourceType.CAMERA);
                            }
                        },
                        {
                            text: 'Cancel',
                            role: 'cancel',
                            handler: () => {
                                reject();
                            }
                        }
                    ]
                });
                actionSheet.present();
            }).then(sourceType => {
                if (!window['cordova'])
                    return;
                let options: CameraOptions = {
                    quality: 100,
                    sourceType: sourceType as number,
                    saveToPhotoAlbum: false,
                    correctOrientation: true
                };
                this.camera.getPicture(options).then((imagePath) => {
                    this.images.push(imagePath);
                    this.util.trustImages();
                });
            }).catch(() => {
            });
        }
    }


    private uploadImage(targetPath) {
    	alert("hello")
        return new Promise((resolve, reject) => {
        	//alert("ok")
            this.uploadingProgress[targetPath] = 0;

            if (window['cordova']) {
                let options = {
                    fileKey: "files[]",
                    fileName: targetPath,
                    chunkedMode: false,
                    mimeType: "multipart/form-data",

                    params : {

     
                 "name":this.name,  
     

                  }
                };
               //alert(JSON.stringify(options))
                const fileTransfer = new TransferObject();
                this.uploadingHandler[targetPath] = fileTransfer;

                fileTransfer.upload(targetPath, this.serverUrl, options).then(data => {

                    resolve(JSON.parse(data.response));

                   
                    	
                }).catch(() => {
                    askRetry();
                });

                fileTransfer.onProgress(event2 => {
                    this.uploadingProgress[targetPath] = event2.loaded * 100 / event2.total;
                });
            } else {
            alert("worng")
                const xhr = new XMLHttpRequest();
                xhr.open('GET', targetPath, true);
                xhr.responseType = 'blob';
                xhr.onload = (e) => {
                    if (xhr['status'] != 200) {
                        this.util.showToast("Your browser doesn't support blob API");
                        console.error(e, xhr);
                        askRetry();
                    } else {
                        const blob = xhr['response'];
                        let formData: FormData = new FormData(),
                            xhr2: XMLHttpRequest = new XMLHttpRequest();
                        formData.append('files[]', blob);
                        this.uploadingHandler[targetPath] = xhr2;

                        xhr2.onreadystatechange = () => {
                            if (xhr2.readyState === 4) {
                                if (xhr2.status === 200)
                                    resolve(JSON.parse(xhr2.response));
                                else
                                    askRetry();
                            }
                        };

                        xhr2.upload.onprogress = (event) => {
                            this.uploadingProgress[targetPath] = event.loaded * 100 / event.total;
                        };

                        xhr2.open('POST', this.serverUrl, true);
                        xhr2.send(formData);
                    }
                };
                xhr.send();
            }

            let askRetry = () => {
                // might have been aborted
                if (!this.isUploading) return reject(null);
                this.util.confirm('Do you wish to retry?', 'Upload failed').then(res => {
                    if (!res) {
                        this.isUploading = false;
                        for (let key in this.uploadingHandler) {
                            this.uploadingHandler[key].abort();
                        }
                        return reject(null);
                    }
                    else {
                        if (!this.isUploading) return reject(null);
                        this.uploadImage(targetPath).then(resolve, reject);
                    }
                });
            };
        });
    }

    private util = ((_this: any) => {
        return {
            removeFromArray<T>(array: Array<T>, item: T) {
                let index: number = array.indexOf(item);
                if (index !== -1) {
                    array.splice(index, 1);
                }
            },
            confirm(text, title = '', yes = "Yes", no = "No") {
                return new Promise(
                    (resolve) => {
                        _this.alertCtrl.create({
                            title: title,
                            message: text,
                            buttons: [
                                {
                                    text: no,
                                    role: 'cancel',
                                    handler: () => {
                                        resolve(false);
                                    }
                                },
                                {
                                    text: yes,
                                    handler: () => {
                                        resolve(true);
                                    }
                                }
                            ]
                        }).present();
                    }
                );
            },
            trustImages() {
                _this.imagesValue = _this.images.map(
                    val => {
                        return {
                            url: val,
                            sanitized: _this.sanitization.bypassSecurityTrustStyle("url(" + val + ")")
                        }
                    }
                );
            },
            showToast(text: string) {
                _this.toastCtrl.create({
                    message: text,
                    duration: 5000,
                    position: 'bottom'
                }).present();
            }
        }
    })(this);
}

Below my php code

<

?php
header('Access-Control-Allow-Origin: *');


mysql_connect("localhost","usrname","password") or die("mysql not coneected".mysql_error());
mysql_select_db("dbname");


      $name = $_POST["name"];
 
 


$sql="INSERT INTO `testImage` (`image`) VALUES ('$name')";
//`Name`, `username`, `email`, `mobile`, `password`, 
//'$name', '$username1', '$useremail', '$userphone', '$userpassword', 
$res=mysql_query($sql);
?>

Please help me out how can i fix that
Thanks in advance

What response are you getting??

nothing. my php code is right or wrong ?

did you try in get method??

no postman is not working

any others way to check ?

Dude postman works. And you should know how to use it first as it will be needed more and more if you are playing around with rest api.
So please just find around in google or try pasting your api url and keep the method to post.

Actually i using slim framework for get json response from server

my url look like this
http://www.maydomainname.com/rental_app/append/index.php/classified

Ohh… you should have told that earlier.

Sorry for that @uddyvky. any others way to achieve this ?

No need to be… But I can’t help you with that!

ok sir. thank you for giving me your valuable time . let me try using php

Sure. And I’m not a sir… I’m just like all… here to learn and help.
All the best!

Thank you for giving me your valuable time