Shinerweb
Shinerweb
  • Видео 384
  • Просмотров 2 905 883
How to add watermark in PDF using PHP | Add watermark on PDF with Live Demo | TCPDF tutorial PHP
In this video, you’re going to learn how to add a watermark on a PDF using TCPDF. Adding a watermark to a PDF document is a basic need in document editing work. TCPDF is a fantastic library for working with PDF documents in PHP. Enjoy!
Here you can follow these steps to generate watermark on PDF:
Step 1: Create one project folder like “generate_pdf“
Step 2: Download TCPDF library
Include above downloaded library inside your project folder
Step 3: Create one PHP file like watermark_pdf_maker.php
First we need to include TCPDF library as below:
include_once('tcpdf_6_2_13/tcpdf/tcpdf.php');
Once you include the TCPDF library you required to override header() method and must have to define path to th...
Просмотров: 1 743

Видео

How to generate and download Barcode by using JavaScript | JsBarcode
Просмотров 1,3 тыс.Год назад
By using JsBarcode JavaScript library we will generate barcode and this is a customizable barcode generator which is helpful to create your barcode. You can also download this barcode in PNG format and you can use that barcode image wherever you want. Blog link: shinerweb.com/how-to-generate-and-download-barcode-with-jquery-free/ Step 1: Create a html file Step 2 : Include the library files in ...
How to crop picture in triangle shape using jQuery | How to use cropper js in JavaScript?
Просмотров 194Год назад
If you want to crop image into triangle shape by using cropper.js then this blog for you. We will create live demo for you so will get idea how programmatically crop your image in triangle shape. We are using Cropper.js JavaScript library to crop an image in triangle shape. Step 1: Create one simple html file. In this file we have added bootstrap.min.css and cropper.min.css which is used for de...
How to load data on scroll in JavaScript | Infinite Scrolling working demo for web and mobile
Просмотров 1 тыс.Год назад
In this video we will fetching data from database when we scroll the page and also this code works fine on desktop browsers and mobile browsers. Whenever the page scrolling at end of the page it trigger the ajax request to get data from database and load specified list of the data at the end of the page. Configure the following steps to load more data from the database on scrolling. Step 1: Cre...
Firebase Facebook login for website | Login with Facebook live demo by using Firebase Authentication
Просмотров 7 тыс.Год назад
In this video we will authenticate users with Firebase using their Facebook accounts by integrating Facebook Login into your app. Here we authenticate using facebook login with FacebookAuthProvider method of JavaScript. 0:00 Introduction 0:16 Live demo 1:38 Start configuration 2:41 Coding 4:03 Include required libraries 4:33 API key configuration 5:54 Facebook login code 7:03 Enable Facebook lo...
How to add Google login button in your website | Live example Firebase login with Google | Shinerweb
Просмотров 770Год назад
In this video we will create a Google Sign-In button for your website. Here we will create live demo example for login with google and in this demo we will use Google APIs and Firebase Authentication to allow users to sign in to your app. Enjoy! Now let’s see step by step integration Google Sign-In into your web app. Step 1: Go to Firebase console and create new project. Step 2: Set the project...
How to Scroll to the top of the page using JavaScript | Back to top with CSS and jQuery live demo
Просмотров 39Год назад
In this video, you’re going to learn how to scroll to the top of the page using JavaScript. We will create live demo example in this video so you can better understand how to configure this scroll top button in your web app. Enjoy! When your page has lots of content and you will scroll the page down to see all these contents and if you want to go to top of the page so at that time this Scroll b...
How to create autocomplete textbox using JavaScript, PHP & MySQL | Autocomplete demo by Shinerweb
Просмотров 502Год назад
In this video, we will create live demo example where we can implement live autocomplete search by using autocomplete widget of jQuery UI and PHP. In this tutorial, I will explain all the process and setups for autocomplete search. We will implement this auto suggest text search on your textbox and also see how to set the searchable text on the textbox step by step. enjoy! Step 1: Create one ta...
How to add Load More button in your webpage by using HTML & PHP | Create Load more button live demo
Просмотров 599Год назад
When you have lots of records on your webpage and if you want to load these records in some segment or in some limited bunch like at a time five records will display while click on load more button. We will create live demo example or steps to load more data from database using PHP. Enjoy! Let as see step by steps to configure Load more data option in your webpage. Step 1: Create one file index...
How to add Google reCAPTCHA v3 in Login page | Step by step Google reCAPTCHA v3 integration in PHP
Просмотров 3,7 тыс.Год назад
In this video, you’re going to learn how to enable and customize reCAPTCHA v3 on your webpage. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep malicious software from engaging in abusive activities on your website. Enjoy! We will follow below steps to configure reCAPTCHA for login purposes. Step 1: Register reCAPTCHA v3 keys on the reCAPTCHA Admin console. Label:...
How do you show a loader until AJAX response? HTML, CSS and JavaScript | Live AJAX loader Demo
Просмотров 7 тыс.Год назад
When you call Ajax and you need to display loading image or loader then you must have to follow this blog. In this blog we will create live example to display loading image or loader when Ajax call is in progress. Enjoy! Let’s start step by step to configure the code for ajax loader. Step 1: Create one simple table like calendar_event_master and store some sample data which we will use for demo...
Sweet Alert demo with simple example | Beautiful Alert Box using SweetAlert.js | SweetAlert Tutorial
Просмотров 6 тыс.Год назад
In this video, we will create live example for sweet alert. Sweet Alert is a method to customize alerts in your applications, websites and games. A beautiful, responsive, customizable and accessible replacement for JavaScript’s popup boxes. Enjoy! What is a sweet alert? Sweet Alert is a way to customize alerts in your games and websites. It allows you to change from a standard JavaScript button...
Firebase authentication for website with live example | Firebase login and signup in website
Просмотров 37 тыс.Год назад
In this video, you’re going to create live demo for secure Firebase Login and Registration. You can use Firebase Authentication to allow users to sign in to your app using one or more sign-in methods, including email address and password. Enjoy! Step 1: Go to Firebase console and click on Add new project. Step 2: Provide your Project name. Step 3: Click on Continue to create project. Step 4: Se...
How to create Spin Wheel Game in HTML and JavaScript | Spinning Wheels Game | Source code available
Просмотров 4,5 тыс.Год назад
In this video, we will create one live example for spinning wheel by using JavaScript code. Spin it with click on SPIN NOW button. More you will click on it, more it’ll spin faster. Using STOP NOW button you can make it stop and you’ll get the result. This demo also working in mobile device so you can also use this example for your spinning wheel game. Use our Spinner Wheel example for your pro...
How to Generate PDF and Send Email in PHP? | Create a PDF and Send by Email in PHP with TCPDF
Просмотров 7 тыс.Год назад
In this video, we will use TCPDF for PDF generation and PHPMailer for sending an email. We will create live demo example for dynamically generate PDF file and send an email as attachment. TCPDF is now one of the world’s most active Open Source projects, used daily by millions of users and included in thousands of CMS and Web applications. PHPMailer is a code library to send emails safely and ea...
How to crop image in round shape by using Cropper.js | Crop image in circle JavaScript | Shinerweb
Просмотров 6 тыс.Год назад
How to crop image in round shape by using Cropper.js | Crop image in circle JavaScript | Shinerweb
How to send email using PHP | Send email using PHPMailer | PHPMailer tutorial by Shinerweb
Просмотров 593Год назад
How to send email using PHP | Send email using PHPMailer | PHPMailer tutorial by Shinerweb
How to create free business email | Godaddy email setup | Create a professional email address
Просмотров 4,4 тыс.Год назад
How to create free business email | Godaddy email setup | Create a professional email address
How to generate or download PDF invoice dynamically in PHP with MySQL | Make PDF report with tcpdf
Просмотров 38 тыс.Год назад
How to generate or download PDF invoice dynamically in PHP with MySQL | Make PDF report with tcpdf
How to add and display events dynamically in fullcalendar js with PHP and MySQL | fullcalendar.io
Просмотров 63 тыс.Год назад
How to add and display events dynamically in fullcalendar js with PHP and MySQL | fullcalendar.io
How to capture image from Webcam in JavaScript and upload image on server by using PHP | Webcam.js
Просмотров 9 тыс.Год назад
How to capture image from Webcam in JavaScript and upload image on server by using PHP | Webcam.js
How to crop image before upload in jQuery | Upload cropped image to server with Cropper.js and PHP
Просмотров 7 тыс.Год назад
How to crop image before upload in jQuery | Upload cropped image to server with Cropper.js and PHP
How to create pagination in codeigniter with example | pagination with search option | by Shinerweb
Просмотров 1,2 тыс.Год назад
How to create pagination in codeigniter with example | pagination with search option | by Shinerweb
How to validate form in jquery with example | Registration form validation in jquery step by step
Просмотров 515Год назад
How to validate form in jquery with example | Registration form validation in jquery step by step
How to import Excel data in MySQL using PHP and CodeIgniter | import excel to mysql php by Shinerweb
Просмотров 474Год назад
How to import Excel data in MySQL using PHP and CodeIgniter | import excel to mysql php by Shinerweb
Bhimashankar Jyotirlinga l The Heaven on Earth l Monsoon Trek l Must Visit in Rainy Season
Просмотров 248Год назад
Bhimashankar Jyotirlinga l The Heaven on Earth l Monsoon Trek l Must Visit in Rainy Season
How to resize image before upload in Javascript | Compress image before upload using jQuery HTML5
Просмотров 2,3 тыс.Год назад
How to resize image before upload in Javascript | Compress image before upload using jQuery HTML5
How to Make a QR Code in 3 Easy Steps | How to generate QR code using jQuery and PHP
Просмотров 289Год назад
How to Make a QR Code in 3 Easy Steps | How to generate QR code using jQuery and PHP
How to add datepicker by using jQuery and HTML | Add Datepicker to Input Field using jQuery UI
Просмотров 481Год назад
How to add datepicker by using jQuery and HTML | Add Datepicker to Input Field using jQuery UI
How to build live search box using PHP, MySQL and AJAX | Select2 Live Search with CodeIgniter
Просмотров 2,4 тыс.Год назад
How to build live search box using PHP, MySQL and AJAX | Select2 Live Search with CodeIgniter

Комментарии

  • @sumitraduwarah7166
    @sumitraduwarah7166 2 дня назад

    Guti. Pam. Naki

  • @amanxtyle1659
    @amanxtyle1659 13 дней назад

    Mobile no. Koo ur registrad hai but wo no. Kho gya kese hoga

  • @GeorgeRuban-zo9zz
    @GeorgeRuban-zo9zz 14 дней назад

    Class "ZipArchive" not found error was coming.

  • @AnaaSharma-ip2vp
    @AnaaSharma-ip2vp 16 дней назад

    Rajasthan mein Giri gaon ki image Kaise dekhenge

    • @Shinerweb
      @Shinerweb 15 дней назад

      Aapko aapka gaon ka name search karna he

  • @Punjabi_948
    @Punjabi_948 17 дней назад

    Bhai mene party join kar li ha Mera bjp ka card kitne time me ay ga

  • @anushamanjunath7869
    @anushamanjunath7869 17 дней назад

    Can a pregnant woman consume this?

    • @Shinerweb
      @Shinerweb 15 дней назад

      We are not recommended please take advies from your doctor

  • @user-iz9jw2xf9g
    @user-iz9jw2xf9g 19 дней назад

    Thank You

  • @adibahnafazad9125
    @adibahnafazad9125 28 дней назад

    facebook login and setting isnot showing. so I can't add redirect url

  • @devossmitha9734
    @devossmitha9734 Месяц назад

    Good. Morning. Amar. Super. Indiar. Gamha. P m. Ancle. Amar. Love. Love. Ancle. Love. Jay. Chree. Ram. Ram. Jay. Chree. Krishna. 😀😀😀😀😀😀😀😀😀😀😀😀♥️♥️♥️♥️♥️♥️♥️♥️♥️❤️❤️❤️❤️❤️❤️❤️❤️🌺🌺🌺🌺🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾🙏🏾

    • @Shinerweb
      @Shinerweb 15 дней назад

      🚩🚩🙏🙏

  • @jazlannaik5574
    @jazlannaik5574 Месяц назад

    Isnei toh kaha tha ki yeh gareeb tha.. Gareeb ke paas camera at that time😂.. Gareeb foreign tour pei .. Gareeb ke itne acche kapde🤣🤣

  • @muhammadanas6867
    @muhammadanas6867 Месяц назад

    success message is coming but notification not popups?

    • @Shinerweb
      @Shinerweb 15 дней назад

      Please check into another browser with clear cache

  • @user-iw2zd8ip5b
    @user-iw2zd8ip5b Месяц назад

    Card kaha dekhne ko milega

  • @adhunikcomputerandstudio2072
    @adhunikcomputerandstudio2072 Месяц назад

    thanks for your information

    • @Shinerweb
      @Shinerweb Месяц назад

      Welcome my dear friend

  • @wasimraja648
    @wasimraja648 Месяц назад

    Good one

  • @SajidKhan-hh5xf
    @SajidKhan-hh5xf Месяц назад

    Brother tell me from where can I download the card

  • @SajidKhan-hh5xf
    @SajidKhan-hh5xf Месяц назад

    Card kaise download Karun vah bhi to batana chahie tha

  • @CONDEIDA-wm6wf
    @CONDEIDA-wm6wf Месяц назад

    IDACONDE

  • @kuberarya-ez9dz
    @kuberarya-ez9dz Месяц назад

    Ab hamara india

  • @sanchaygawande
    @sanchaygawande Месяц назад

    Says App is not active after all the steps shown in the video please Help!

  • @veerendarpotlapalli6298
    @veerendarpotlapalli6298 Месяц назад

    it works Great in all web browsers except safari...even token was also not coming in safari. i dont know where it is going wrong.

    • @Shinerweb
      @Shinerweb Месяц назад

      Good observation... I also not checked in safari...

    • @Shinerweb
      @Shinerweb Месяц назад

      I will try to find some solutions

  • @zx_edits-jh9xh
    @zx_edits-jh9xh Месяц назад

    Not show image in alert

    • @Shinerweb
      @Shinerweb Месяц назад

      You can pass full path of your image

  • @nesadlevent
    @nesadlevent Месяц назад

    Is there a way to share our webcam live on a website? Like sharing screen but I want share my webcam live to a website.

  • @jayantabhuyan124
    @jayantabhuyan124 2 месяца назад

    Kush kaam ka nehi hey,lion buddha ho gyia....

  • @nazirBabu-zx9vm
    @nazirBabu-zx9vm 2 месяца назад

    . Najir Bali

  • @BikashKisku-sh9zt
    @BikashKisku-sh9zt 2 месяца назад

    Thank uh bhaujn

  • @jubaer_jamil
    @jubaer_jamil 2 месяца назад

    Thank you bro. It is helpful for me.

    • @Shinerweb
      @Shinerweb 2 месяца назад

      Welcome my friend!

  • @kasusaiyad
    @kasusaiyad 2 месяца назад

    Bhai ham Bill bharne ke baad malum kese kar sakte hai ke aap ka bill bhar dia gaya hai

  • @harishchandra4546
    @harishchandra4546 2 месяца назад

    Ziparchive not found error in webserver .. I installed that.still same error

    • @Shinerweb
      @Shinerweb 2 месяца назад

      You have included library or not

  • @dinkykhatri6038
    @dinkykhatri6038 2 месяца назад

    Thanks alot

  • @ankitkaushikt
    @ankitkaushikt 2 месяца назад

    Thank You So much brother, your tutorial save my life.

    • @Shinerweb
      @Shinerweb 2 месяца назад

      Welcome brother! Keep in touch with our channel

  • @sayakraysr.402
    @sayakraysr.402 2 месяца назад

    How to add full calendar on wordpress

    • @sayakraysr.402
      @sayakraysr.402 2 месяца назад

      Please help how to do this

    • @Shinerweb
      @Shinerweb 2 месяца назад

      I think you need to install some plugins for that

  • @ajoyvolgs9502
    @ajoyvolgs9502 2 месяца назад

    Tq

  • @itzz_aadii
    @itzz_aadii 2 месяца назад

    Thanx bro

  • @akshatshah2330
    @akshatshah2330 3 месяца назад

    Hello Sir Please tell me how to add more input fields in event?

  • @irsyadazharusyarif6714
    @irsyadazharusyarif6714 3 месяца назад

    Where to get your .css and .js files ?

  • @sklutfarrahaman6516
    @sklutfarrahaman6516 3 месяца назад

    I am Modi's die heart faaan ❤

    • @Shinerweb
      @Shinerweb 3 месяца назад

      We also🔥🚩🚩

  • @devendrapandiyar6130
    @devendrapandiyar6130 3 месяца назад

    Card kese nikale

    • @Shinerweb
      @Shinerweb 3 месяца назад

      Registration ke bad download ho hi jata he

  • @user-qh6gm8np8f
    @user-qh6gm8np8f 3 месяца назад

    Narendra Modi koi yuhi nhi banta mitti se jud ke tab bane hai Narendra Modi saheb ❤❤❤❤

  • @MiqbalRather-ze6it
    @MiqbalRather-ze6it 3 месяца назад

    Very nice

  • @codeweight8878
    @codeweight8878 3 месяца назад

    Thanks buddy love you , you saved my lots of hours

    • @Shinerweb
      @Shinerweb 3 месяца назад

      Most welcome! Keep in touch with our channel

  • @user-vq9xe2wu3h
    @user-vq9xe2wu3h 3 месяца назад

    Thank you bro I love you

  • @bhaveshhalpati1446
    @bhaveshhalpati1446 3 месяца назад

    Thank You So Much Bro ❤❤❤

  • @Harsha-nh3io
    @Harsha-nh3io 3 месяца назад

    tq working!!

    • @Shinerweb
      @Shinerweb 3 месяца назад

      Welcome and keep in touch with us

    • @Harsha-nh3io
      @Harsha-nh3io 3 месяца назад

      ​@@Shinerweb hey, i want know how create dashbord for the logged in users. Suggest me methods

  • @jesusdacoast872
    @jesusdacoast872 3 месяца назад

    Thank you very much

    • @Shinerweb
      @Shinerweb 3 месяца назад

      You are welcome! Keep in touch with us

  • @bilal3349
    @bilal3349 3 месяца назад

    Maine membership Kiya ab card ko kaise download karna hai

    • @Shinerweb
      @Shinerweb 3 месяца назад

      Wo register hone ke bad download ho jata he

  • @zubairbs
    @zubairbs 3 месяца назад

    @shinerweb I tried your way but cronjob still not working. Can you help me in this >?

    • @Shinerweb
      @Shinerweb 3 месяца назад

      Can you share your error log

    • @zubairbs
      @zubairbs 3 месяца назад

      @web Ican't check logs i don't have full access but I am using this code "/usr/local/bin/php /home/pilaf/public_html/slippa/slippa/application/index.php main/checkAuctionResult"

    • @zubairbs
      @zubairbs 3 месяца назад

      @@Shinerweb there is no error related to cron when i check web server error logs

    • @zubairbs
      @zubairbs 3 месяца назад

      @@Shinerweb Hi again, i was able to schedule cron job.. Thank you :)

  • @priyanlasinha2986
    @priyanlasinha2986 3 месяца назад

    Bahut acha maa ko tv ka sound sune me dikat ho raha tha isliye mobile per serial aur need dekhna chati thi Thanks once sgsin

    • @Shinerweb
      @Shinerweb 3 месяца назад

      Most welcome 🙏

  • @Stylish_Rishabh_01
    @Stylish_Rishabh_01 4 месяца назад

    Koi fayda hai kya iska

  • @nkpk1648
    @nkpk1648 4 месяца назад

    How to run this code? I mean with which platform? Can I use VS code?

    • @Shinerweb
      @Shinerweb 4 месяца назад

      You require xampp server with mysql database

  • @djpankajmm..4536
    @djpankajmm..4536 4 месяца назад

    Bhai nb send krna jaruri jankari lena hii