Skip to main content

File Uploading

------------ HTML

 <form role="form" action="<?php echo base_url('user/profile');?>" method="post" enctype="multipart/form-data">
                       <input type="file" name="userfile" id="user_profile_pic" required>
                       <input type="hidden" name="userid" value="<?php echo isset($customer[0]['id'])? $customer[0]['id'] : false; ?>">
                       <button class="label label-sm btnorange" type="submit" name="uploadpic" > Update </button>
                       <div id="alertmsg"></div>
                    </form>
                   
------------ PHP
  public function profile()
{
$id = $this->session->userdata('id');

if(isset($_POST['uploadpic']) || isset($_POST['userfile']))
{
$userid = trim($this->input->post('userid'));
$wherei = array(
'id' => $userid
);

$image = $_FILES['userfile']['tmp_name'];
$nameimage = $_FILES['userfile']['name'];

$foldername="assets/userimages/";
if(!is_dir($foldername))
{
mkdir($foldername, 0777, true);
}

if(move_uploaded_file($image, $foldername . $nameimage)){
       $updatedata = array(
'image' => $nameimage
);


$is_update = $this->user_model->UPDATEDATA('user',$wherei, $updatedata);

if($is_update){

$this->session->set_flashdata("success","Update Successfully.");
redirect('user/profile');

}else{

$this->session->set_flashdata("failed","Update Failed.");
redirect('user/profile');
}
    }else{
        $this->session->set_flashdata("failed","upload Failed.");
redirect('user/profile');
    }
}
}

----------------- JQUERY
<script>

$("#user_profile_pic").change(function() {

    var val = $(this).val();

    switch(val.substring(val.lastIndexOf('.') + 1).toLowerCase()){
        case 'jpeg': case 'jpg': case 'png':
           
            break;
        default:
            $(this).val('');
            $('#alertmsg').html("Please upload .jpg , .png or .jpeg only.");
         
            break;
    }
});
</script>

Comments

  1. https://stackoverflow.com/questions/3828554/how-to-allow-input-type-file-to-accept-only-image-files


    input type="file" name="myImage" accept="image/x-png,image/gif,image/jpeg"

    input type="file" name="myImage" accept="image/*"

    ReplyDelete

Post a Comment

Popular posts from this blog

SETUP REST API IN CI

1. Create Rest_controller.php inside controllers and paste code: <?php defined('BASEPATH') OR exit('No direct script access allowed'); require APPPATH . '/libraries/API_Controller.php'; class Rest_controller extends API_Controller { public function __construct() { parent::__construct(); } public function index() { $this->api_return(             [ 'status' => true,                'result' => "Welcome to Testservices."             ],         200); } } ?> 2. Create api.php inside config and paste code : <?php defined('BASEPATH') OR exit('No direct script access allowed'); /**  * API Key Header Name  */ $config['api_key_header_name'] = 'X-API-KEY'; /**  * API Key GET Request Parameter Name  */ $config['api_key_get_name'] = 'key'; /**  * API Key POST Request Parameter Name ...

Array Difference, Radio Button Js,

$a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow"); $a2=array("e"=>"red","f"=>"green","g"=>"blue"); $result=array_diff($a1,$a2); print_r($result); ______________________________________________________ <script type="text/javascript">  $(document).ready(function(){       $("input[type='radio']").click(function(){             var radioValue = $("input[name='duration']:checked").val();             if(radioValue){                 alert("Your are a - " + radioValue);             }         });  }); </script>   $(document).on("click", ".upappdesc", function(){ // alert($(this).data('id'));  var option = $(this).data("cat").split(",");  // alert($(this).data(...

KrutiDev To Unicode Conversion

http://wrd.bih.nic.in/font_KtoU.htm ___________________________________ <html> <head> <title>KrutiDev <=> Unicode Conversion</title> </title> <link rel="stylesheet" href="style.css">       <script src='script.js'></script> </head> <!--       body of the HTML starts here. one text box is provided each for input and output. --> <body bgcolor='#99CCFF'> <P style='text-align:center; font-family: Arial, Helvetica, sans-serif; font-size: 14pt; font-weight:bold; background-color: #FF6600; color: #FFFFFF'> Conversion between Krutidev-010 and Unicode क्रुतिदेव-०१० और यूनिकोड के बीच रूपांतरण </P> <form name="form1"> <p style='font-size:10pt'>क्रुतिदेव-०१० (Kruti Dev 010) फॉन्ट में टंकिट टेक्स्ट को "क्रुतिदेव-०१०" नामक टेक्स्ट बॉक्स में टाईप या पेस्ट करें तथा इसे यूनिकोड में रूपांतरित करने के लिए अधोमुख तीर वाल...