Posts

new style blogging method for every blogger 2020 how to make new style blog and earn money

<html> <head></head> <body> <form name=f1 id=f1 method=post> A:<input type=text name=t1 id=t1><br> B:<input type=text name=t2 id=t2><br> <input type=radio name=r1 id=r1 value=sum>sum<br> <input type=radio name=r1 id=r2 value=sub>sub<br> <input type=radio name=r1 id=r3 value=mul>mul<br> <input type=radio name=r1 id=r4 value=div>div<br> <input type=submit name=s1 id=s1 value=calculation> ans:<input type=text name=t4 id=t4 value="<?php echo $z;?>"> </form> </body> </html>                                     PRIVIOUS           NEXT                           

find interest using php

simple interest using php <?php include "calculation2.php"; if(isset($_POST['s1'])) {  if(isset($_POST['r1']))   {     $c=new maths_operation();     if(($_POST['r1'])=='sum')     {        $z=$c->sum($_POST['t1'],$_POST['t2']);     }     if(($_POST['r1'])=='sub')     {        $z=$c->sub($_POST['t1'],$_POST['t2']);     }     if(($_POST['r1'])=='mul')     {        $z=$c->mul($_POST['t1'],$_POST['t2']);     }     if(($_POST['r1'])=='div')     {        $z=$c->div($_POST['t1'],$_POST['t2']);     }   } } ?>                       ...

post widget for blog past on html/javascript

post widget for blog past on html/javascript      <style type="text/css">     #random-posts img{float:left;margin-right:15px;width:75px;height:75px}ul#random-posts{list-style-type:none;padding:0}#random-posts li{margin-bottom:15px}.random-title{margin-bottom:5px}.random-summary{margin-top:5px;display:block}     </style>     <ul id='random-posts'>     <script type='text/javascript'>     var randomposts_number = 7;     var randomposts_chars = 40;     var randomposts_details = 'yes';     randomposts_details2 = 'yes';     var randomposts_comments = 'Comments';     var randomposts_commentsd = 'Comments Disabled';     var randomposts_current = [];     var total_randomposts = 0;     var randomposts_current = new Array(randomposts_number); ...

some simple cpp program example for practice

The C ++ program may seem a bit rough at first, but if you try to look at its syntax and its logic, you will find C ++ and another computer language easy to do, so all you have to do is design its algorithm and flowchart and  the datatype and where variable. And the function comes in. Then you see how many times one sentence gets repeated. You just have to make up your mind if you do not feel like traveling. some simple cpp program write a function max() to find out maximum of three integer parameter. the function should return maximum of the three parameters. use function prototype.  #include<iostream.h>  #include<conio.h>     int max(int,int ,int);  int main() {    double num1,num2,num3; cout<<"number1="; cin>>num1; cout<<"number2="; cin>>num2; cout<<"number3="; cin>>num3;      int result=max(num1,num2,num3); cout<<"max is="<<r...

notification code when open website

<html> <head> <style> #bloggernotification{overflow:hidden; width:100%;height:29px;padding-top:7px;text-align:center; background:#ffffff;position:relative;box-shadow:4px 15px 15px 19px  arial,sans-serif;font-size:13px;font-weight:400;text-shadow:11px 11px 14px #000000;border-bottom:0px solid #90f128;margin:0;border-radius:50px;} bloggernotification strong {font-size:24px;font-family:oswald; font-weight:normal;padding-right:17px;} #bloggernotification a{text-decoration:none;color:#000000;font-family:oswald arial,sans-serif;font-size:20px;font-weight:500; word-spacing:5px; text-shadow:2px 2px 2px #bloggernotification a:hover{text-decoration:none;text-transform:lowercase;} </style> <body> <div id='bloggernotification'>  <div style='-moz-background-inline-policy: continuous; background: none repeat scroll left top;font-size:px;font-weight: normal;font-family: &apos;Oswald&apos;, sans-serif;'>   <marquee b...

SIMPLE FOOTER DESIGN

SIMPLE FOOTER DESIGN <html> <head> <style> * {margin: 10;padding: 1;border-radius:90px;} body:hover { font-family: arial; font-size: 15px;text-transform:uppercase;background:rgb(10,10,3);animation-delay:0.9 } .clearfix {clear: both;} .bkc {background: #3E4352; color: #BDC3CF;} .bkc1 {background: #000000; color: #E3E7F2;} a {color: #BDC3CF; text-decoration: none;} a:hover {color: #ffffff; text-decoration:none;} .footer-smap {     width: 900px;     float: left;     padding: 15px 20px;   text-align:center;   font-size: 16px;     } .footer-copyright {text-align: center; color: #BDC3CF;} </style> </head> <body> <div class="wrap bkc">   <div class="footer">     <div class="footer-smap">         <a href="https://techlife95.blogspot.com/2019/07/write-program-which-accept-two-number.html...

assignment cpp simple program

 write a program to accept temperature in fahreheit and print it in centigrade #include<iostream.h> #include<conio.h> int main() { float centigrade,fahreheit; clrscr(); cout<<"centigrade value="; cin>>centigrade; fahreheit=centigrade*1.8+32; cout<<"centigrade value is="<<centigrade<<endl; cout<<"fahreheit value is="<<fahreheit<<endl; getch(); return 0; } OUTPUT cetigrade value=23 centigrade value is=23 fahreheit value is=73.40002 write a program to find sum of two value. #include<iostream.h> #include<conio.h> int main() { clrscr(); int first,second,sum; cout<<"enter first value="; cin>>first; cout<<"enter second value="; cin>>second; sum=first+second; cout<<"sum="<<sum; getch(); return 0; } OUTPUT enter first value=5 enter second value=5 sum...