Posts

Showing posts from March, 2016

Java Mysql Database Connectivity without download mysql connector file [use netbeans] - krButani

package javaconnectivity; import java.sql.*; public class Javaconnectivity {     /**      * @param args the command line arguments      */     public static void main(String[] args) throws Exception {                Driver dr = new com.mysql.jdbc.Driver();                 DriverManager.registerDriver(dr);                 Connection cn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testDemo?zeroDateTimeBehavior=convertToNull","root","mysql");                 Statement st = cn.createStatement();         String str = "Create table tbldemo(fname varchar(20))";         st...

Login Form Design 1

Image
The Code is : <!DOCTYPE html> <html> <head>     <meta charset="UTF-8">     <title>krButani     <style type="text/css">         html,         body {             min-height: 100%;         }         body {                         background: url("../img/1.jpg") left top;             background-size: cover;             background-repeat: no-repeat;         }         .login-design {             margin: 20% 33%;          ...