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   ...

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>

On click Button , and get data in modal form

 <button class="buy" data-id="<?=$cart_value->id?>" type="button" style="background-color: #f55345; color: white; padding-right: 25px; padding-left: 25px; border:2px solid #f55345;" data-toggle="modal" data-target="#myModal">Buy Now</button> Explainatin  :   make  a class in a button tag , thats like mention above you  see .   ok . </script> $(' .buy ').on('click',function(){                                var k = $(this).data(' id ');                    $("# productid ").val(k);                              });  </script> explaination:  about  ->>>    var k =  $(this).data(' id '); Answer -->>> buy  is  our class name , $(this).data(' ')    <----...

Autometic reload page in codeigniter

 <?php header("<?=base_url()?>home/contact_send_mail", true, 302);?> 1. which your are menstion in this <" "> .home is a controller  and contact_send_mail  is  a method  which is defined in home controller in codeigniter . 2 .  Simply copy  that code and paste in contact_send_mail  page . then your page will be refresh autometic when you  on the  contact_send_mail. that's all .

Popular posts from this blog

Ms Office 2019 activation link