Posts

Showing posts from April, 2022

How To Create Auto Completing Input In HTML With PHP AJAX And Javascript - letsbug

Image
      In this article we are making a auto completing input . We are going to use as usual HTML, CSS, Javascript but new thing is going to the PHP and AJAX .     We are using PHP on the server to get the data for our input. And with the help of AJAX we will make it look much better and the experience is going to be very smooth.      Before we start doing this project you should have a clear understanding of basics that is HTML, CSS, Javascript. And little bit of Ajax and PHP. Prerequisite:  Frontend HTML CSS JAVASCRIPT AJAX Backend  PHP Auto Completing Input     So without wasting our time let's just start. But before that let's see our project folder structure.     - autoCompleteInput          /server                    - ajaxAutoComplete.php          - index.html          - main.js          - styles.css     In this project we have not focused on the styling but should always make some better looking UI even they are not important. Better UI will have a good impression of you.

C++ Program To Overload + and ! Operator | Operator Overloading - letsbug

Image
      In this article we are looking how we can overload a operator in c++. Operator overloading might sound tempting to you. But it's very simple to understand and use. You are just changing the default behavior of the operators.     You are good with the + operator which adds two numbers. Suppose you have create a class called myFile which create a new file with some content in it when initialized. And you have created two instances of the myFile class with different content.      Now you want to create a new instances of the class where we can do something like this  f3 = f1 + f2 . If try this without operator overloading it will throw error. But here we will overload the + operator to add two files using the + operator. You will understand once you look add the code itself. C++ Operator Overloading we will over the following operator Operator Example Purpose + F3 = F1 + F2 Concatenate File 1 and File 2 into Fi

C++ Program To Find Min Max Of Two Integer Numbers - letsbug

Image
       This is how to  find minimum and maximum of two integer numbers in cpp using inline function and conditional operators. Nothing much in here very simple program code: #include <iostream> using namespace std ; int main (){     int a , b , min , max ;     cout << "Enter two integer numbers: " ;     cin >> a >> b ;     min = a < b ? a : b ;     max = a > b ? a : b ;     cout << "Min: " << min << endl ;     cout << "Max: " << max << endl ;     system ( "pause" );     return 0 ; } output: output

Glassmorphic Model In HTML Javascript And CSS - letsbug

Image
    In this article we are creating a model in HTML CSS and Javascript . And this model is going to be a card like element and with have that glass effect which we call Glassmorphic Design.     There is nothing much that you should know before doing this its just a simple single .html page in which we will add internal css and internal javascript.     So there is only one page that is index.html. If you only know HTML and CSS with a little Javascript you are ready to go. Glassmorphic Mo del In HTML, CSS And Javascript code: HTML <!DOCTYPE html > <html lang = "en" > <head>     <meta charset = "UTF-8" >     <meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     <meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     <title> Glassmorphic Model </title>     <style>     </style> </head> <body>     <button class = &qu

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug