Posts

Deploy Angular Project with CI /CD to Hostinger with FTP

 1. creat a folder in your project root folder with name .github 2. create second folder in .github/workflows 3. create file in your .github/workflows/main.yml paste this code in main.yml file on :   push :     branches : main <--- select your branch name name : 🚀 Deploy website on push jobs :   web-deploy :     name : 🎉 Deploy     runs-on : ubuntu-latest     steps :     - name : 🚚 Get latest code       uses : actions/checkout@v3     - name : Use Node.js 18       uses : actions/setup-node@v2       with :         node-version : '18'           - name : 🔨 Build Project       run : |         npm install               npm run build       - name : 📂 Sync files       uses : SamKirkland/FTP-Deploy-Action@v4.3.4   ...

Upload Excel file on MYSQl in CodeIgniter

Excel upload on MYSQL  

Excel file upload on MYSQL in Laravel

 goto site : https://laraveltuts.com/laravel-9-import-export-excel-csv-file-to-database-example/ and follow steps

Laravel Mailer

 <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Mail; use App\Http\Requests; use App\Http\Controllers\Controller; class Handover extends Controller { //    public function index() { //       $data = array('name'=>"Virat Gandhi");     //       Mail::send(['text'=>'mail'], $data, function($message) { //          $message->to('abc@gmail.com', 'Tutorials Point')->subject //             ('Laravel Basic Testing Mail'); //          $message->from('xyz@gmail.com','Virat Gandhi'); //       }); //       echo "Basic Email Sent. Check your inbox."; //    }    public function index(Request $request) {       // return $request;       $data = ['name'=>$request->name, 'shopname'=>$request-...

java script Form Validation

 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.0/jquery.validate.min.js"></script>     <script type="text/javascript">     $(document).ready(function() {         $("# form-submit ").validate();     });     </script> Note  :  1. "required" is must on input field 2. write  id on  form tag   as like   --->   <form id=" form-submit "  action="#" method="post">

Find Customer Location code

//start----  <?php  $ch =curl_init(); curl_setopt($ch, CURLOPT_URL,"http://ip-api.com/json"); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); $result = curl_exec($ch); $result =json_decode($result); ?> //end code  for printing location =>  <?php echo("Country:".$result->country);?>

Mobile otp verification code

/* Start code//  <?php // Account details $apiKey = urlencode('enter your  api key');   // Message details         $numbers = '919140934715'; $sender = 'Jims Autos'; $message = 'This is your message'; $url = 'https://api.txtlocal.com/image-logo.png';   // Prepare data for POST request $data = array('apikey' => $apiKey, 'numbers' => $numbers, 'message' => $message);   // Send the POST request with cURL $ch = curl_init('https://api.txtlocal.com/send/'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch);  // Process your response here echo $response; ?>  end  code *//

java script get value from tag

<ul id="navMenus" class="booking-dates" data-bind="foreach: bookingDates">         <li><span data-bind="text: bdate, click: $parent.addDate">02 Apr</span></li>     </ul>  <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.js"></script> <script type="text/javascript">   $("#navMenus").on('click','li',function(){      $("#navMenus li.active").removeClass("active");  // this line for remove color when I click on  button.          var k = $(this).text();  // this line for gettting value when I click on  button       // alert(k);     $(this).addClass("active");  // this line for remove button onclick }); </script>

Popular posts from this blog

Ms Office 2019 activation link