npm install sweetalert2
TOP FTP Servers in Bangladesh INFO INTERNET-FTP Server Dhaka – FTP Server circleftp.net CircleNetwork Samonline FTP Server Samonline 2 ...
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.
Route::get('/{anypath}','HomeController@index')->where('path','.*');
<IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews -Indexes </IfModule> RewriteEngine On RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^ ^$1 [N] RewriteCond %{REQUEST_URI} (\.\w+$) [NC] RewriteRule ^(.*)$ public/$1 RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ server.php</IfModule>
<div class="form-group">
<label class="control-label col-md-3">Image<big class="text-danger">*</big></label>
<div class="col-md-4">
<div id="my_camera"></div>
</div>
<div class="col-md-4">
<div id="results">Your Image</div>
<input style="display:none" name="image" id="image" class="form-control" />
</div>
<input type=button value="Take Photo" onClick="take_snapshot()"></div>
// Webcam JS// <script> Webcam.set({ width: 195,
height: 100,
image_format: 'jpeg',
jpeg_quality: 90
});
Webcam.attach( '#my_camera' ); </script>
<script language="JavaScript">
function take_snapshot() { // take snapshot and get image data
Webcam.snap( function(data_uri) { // display results in page
document.getElementById('results').innerHTML = '<img src="'+data_uri+'"/>';
$("#image").attr('value',data_uri); } ); } </script> // Webcam JS//
$image = $request->image; $exploded=explode(',',$image);
$decoded=base64_decode($exploded[1]); if(Str::contains($exploded[0],'jpeg'))
{
$extention='jpg';
}
else{
$extention='png';
} $fileName=Str::random(15).'.'.$extention;
$path=public_path('images').'/'.$fileName;file_put_contents($path,$decoded); $form_data = array( 'image' => $fileName, );