Create a model first and then you can continue with following queries, we have created model which surely helps you to understand in better ways. from django.db import models class Blog(models.Model): headline = models.CharField(max_length=255) tag = models.CharField(max_length=255) body_text = models.TextField() pub_date = models.DateField() mod_date = models.DateField(default=date.today) number_of_comments = models.IntegerField(default=0) number_of_pingbacks…
New Viral Destination: This place is Gundu in Bhaktapur which is currently viral in different social media due to dummy plane & beautiful scenery. But many people are misguided about the location. Here is how one can reach this place – First of all reach Suryabinayak Chowk at Bhaktapur from…
In this page you are going to learn why using React hooks and how to implement it as well as you will have more in depth knowledge in hooks. What are Hooks ? Hooks are a new additional features in React Version 16.8 which allows you to use React Features…
B.Sc. CSIT VI Semester Exam ResultĀ 7th Jul, 2020 The official Site : https://www.tuiost.edu.np/ BSC CSIT Sixth Sem Result Published View More by Downloading the File :
Verify AdSense account in a month for Blogger AdSense is the Advertising platform services provided by the Google. Google AdSense allows you to run ads on your website, Blogsite and YouTube get Paid when Visitor Clicks on the ad. For the Blogger and the YouTuber, it is the best platform…
String in Java :It is basically an object that represents sequence of char values. An array of characters works same as Java string. String in Java : It’s Sequence of Unicode character Defined in java.lang.package String Literals are delited by double Quotes. String are treated as objects Syntax of string in java…
Here, With this article you will learn how to create Digital Clock with standard format. watch function is defined and we created a variable called date. and using the get method of javascript we store the data in h,m,s variable. The complete JavaScript code is given below : watch.js file…
Implement CRUD operations for student table using prepared statements. Ask for user input where applicable. [Tu question ] Before building the project you need to follow the below step, CRUD operations using prepared statements 1. Start your ‘Xampp’ 2. At first create the database using sql query which is inside…
What is Data type ? A data type , in programming is a classification that specifies which type of value a variable has and what type of mathematical, relational or logical operations can be applied to it without causing an error. This repository includes the basics practice code of Java…