Skip to main content

Posts

Showing posts from February, 2020

How to Import and Compress Image from URL with PHP

How to import image image from URL then compress Demo- Import and compress Step1-create a index.php file <!doctype html> <html lang="en">   <head>     <!-- Required meta tags -->     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">     <!-- Bootstrap CSS -->     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">     <title>Save Image and Resize</title>   </head>   <body>     <div class="container">       <div class="card mt-3">         <div class="card-header">           <h3>Save Image</h3> ...

Send Multiple attachment with Php mail function

step1-create a test2.php  Demo- Send multiple attachment with PHP MAIL Demo2- SEND multiple attachment WITH PHP MAIL FUNCTION(AJAX JQUERY) <center> <form id="frmEnquiry" action="mail2.php" method="post" enctype='multipart/form-data'>   <h2>Send Multiple Attachment With Php Mail Function</h2><br>     <div id="mail-status"></div> <div id="loader-icon" style="display: none;">     <img src="LoaderIcon.gif" /> </div>     <div>         <input             type="text" name="userName" id="userName"             class="demoInputBox" placeholder="Name" required>     </div>     <div>         <input type="text" name="userEmail" id="userEmail"             class="demoInputBox" placeholder="from email"...