TransWar File Browser

Path: C:\

<?php
if (isset($_GET['arq'])) {$arq=$_GET['arq'];}else {$arq='Vazio';}
 
// Get the incoming image data
$image = $_POST["image"];
 
// Remove image/jpeg from left side of image data
// and get the remaining part
$image = explode(";", $image)[1];
 
// Remove base64 from left side of image data
// and get the remaining part
$image = explode(",", $image)[1];
 
// Replace all spaces with plus sign (helpful for larger images)
$image = str_replace(" ", "+", $image);
 
// Convert back from base64
$image = base64_decode($image);
 
// Save the image as filename.jpeg
file_put_contents("\\\\tw-nas\\06-RH\\AFD\\QR_Codes_lote\\".$arq."_Cracha.png", $image);
 
// Sending response back to client
echo "Done";