Whoops! We seem to have hit a snag. Please try again later
Solution :
- Open [xampp_folder_path]/php/php.ini to edit.
- Search for ;extension=intl and remove the ;.
- Save the php.ini file and restart Apache.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Multiple file upload by form post ASP.NET C# MVC
<form method="post" enctype="multipart/form-data">
@Html.AntiForgeryToken()
<p class="m-0">
Photo
<input type="file" name="Photo" id="Photo" accept="image/x-png,image/jpeg" />
<br />
Adhaar
<input type="file" name="Adhaar" id="Adhaar" accept="image/x-png,image/jpeg" />
<br />
Pan
<input type="file" name="Pan" id="Pan" accept="image/x-png,image/jpeg" />
<br />
<input type="checkbox" id="chkconfirm" /> I
provide my consent. I will follow the Tangentweb term condition and policy.
<br /> <br />
<input type="submit" value="Save" class="button
button-primary button-wide-mobile" onclick="return filecheck()" />
</p>
</form>
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
File compress facility is available in javascript and it's good practice to compress files client-side, before uploading to the server because it saves the resource of the Server time and internet bandwidth and increases the user file upload experience.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.