Vignesh A Sathiyanantham

Vignesh A Sathiyanantham

Results-oriented professional with over a decade of experience in Supply Chain, and Cloud SaaS products, gained in dynamic product startup environments as well as corporate settings. AWS Certified Developer Associate with expertise in SaaS application development, microservices, AWS SDK integration, and scalable systems utilizing AMQP (RabbitMQ), GCP Pub/Sub. Currently leading the offshore team for integration of the MIRAKL marketplace for top-tier e-commerce order management.

Base64 for images a look

Using Base64 encoded images in website Encode the image to base64 in php <?php $image = file_get_contents(“”); $base64 = base64_encode($image); echo $base64; // This will echo the encoded base64 image ?> Load images in website using php: <?php $image =…

Text watermark in webpages

Adjust your rotate and font size values as per your requirement <style type=”text/css”> #asvignesh-watermark { color: #d0d0d0; width: 100%; font-size: 198pt; -webkit-transform: rotate(-47deg); -moz-transform: rotate(-47deg); height: 100%; margin: 0; z-index: -1; left:-100px; top:-200px; position: absolute; } </style> <div id=”asvignesh-watermark”> <p>Vignesh A…

Take MySQL Backup using PHP

One of the most important task of developer or administrators is to take backup periodically, Most of the hosting provider and cloud providers charge more for taking backup periodically , SaaS application developers or CMS developers can let the user to…