Author name: SKB

Upload images to web server using php

The following example shows that how to upload and download images / files [.jpeg/.png/.bmp/ .txt/.doc etc] to web server [localhost or remote server] 1. Create a HTML web page as following screen with code. <html> <head> <title>Image/File Uploading Form</title> </head> <body background=bg.jpg> <h2>File Upload:</h2> Select a file to upload: <form action=”file_uploader.php” method=”post” enctype=”multipart/form-data”> <input type=”file” name=”file” …

Upload images to web server using php Read More »

Share

Java Programs – 2

1. Java program to find number of lines. import java.io.*; public class NOL { public static void main(String[] args) { try { System.out.println(“Getting line number of a paritcular file example!”); BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); System.out.println(“Please enter file name with extension:”); String str = bf.readLine(); File file = new File(str); if (file.exists()) { FileReader …

Java Programs – 2 Read More »

Share

CSS blocks-and-menus

In this tutorial you’ll able to create a css [cascading style sheet] blocks for your web site. Below are the some of examples you can refer . Creating beautiful hyperlink buttons with CSS blocks. Example 1. <html> <head> <style> #corner1{ border-radius: 15px 50px 30px 5px; background: skyblue; padding: 20px; width: 100px; height: 25px; } #corner2{ …

CSS blocks-and-menus Read More »

Share

HTML5 Validation

Following example states the use of HTML5 control form validation. <!DOCTYPE html> <html> <body> <h1> HTML5 Form Validation </h1> <hr> <form name=f1> Enter name: <input type=”text” pattern=”[a-zA-Z]+” title=”Your name without space” required /> </br> Email id: <input type=”email” required /> </br> WebAddress: <input type=”url” required/> starts with http:// </br> Phone number: <input type=”tel” pattern=”^\d{2}-\d{10}” required/> …

HTML5 Validation Read More »

Share

Top MBA (Management) Colleges in India

Indian Institute of Management, Bangalore Indian Institute of Management, Ahmedabad Indian Institute of Management, Calcutta Department of Management Studies, Indian Institute of Technology, Delhi Department of Management Studies, Indian Institute of Technology, Madras Indian Institute of Management, Lucknow XLRI – Xavier School of Management, Jamshedpur Indian Institute of Management, Kozhikode Indian Institute of Technology, Roorkee …

Top MBA (Management) Colleges in India Read More »

Share

Top Engineering colleges in india

  Indian Institute of Technology, Madras Indian Institute of Technology, Delhi Indian Institute of Technology, Bombay Indian Institute of Technology, Kharagpur Indian Institute of Technology, Kanpur VIT University, Vellore Thiagarajar College of Engineering, Madurai SASTRA University, Thanjavur PSG College of Technology, Coimbatore National Institute of Technology, Warangal National Institute of Technology, Tiruchirappalli National Institute of …

Top Engineering colleges in india Read More »

Share

IT Engineer Responsibilities

1) Software / Hardware installing, supporting and maintaining infrastructure. 2) Managing company emails, anti-spam and virus protection. 3) Creating user accounts, permissions and passwords. 4) Monitoring usage of network . 5) Ensuring the most cost-effective and efficient use of servers / machines. 6) Providing IT solutions to business and management problems. 7) Ensuring that all IT equipment …

IT Engineer Responsibilities Read More »

Share

Domain connectivity

In this tutorial you’ll able to connect your windows xp/7/8 PC to server machine like windows server 2008 R2 etc. First of all  on Windows XP PC settings : Put the IP address on the windows XP  PC. To do this follow the steps. 1. Right click on “My Network places” icon on desktop and …

Domain connectivity Read More »

Share

WordPress on Local server

How to run / create a blog/website using WordPress on local pc/laptop?. Brief About WordPress:  It is a CMS(Content Management System), The most powerful open source plat-form for creating blogs and professional websites with over 34% of entire web share out of over 1 billion websites world wide. Over 48,000 plug-ins to use and enhance your …

WordPress on Local server Read More »

Share

Display and Update records using PHP

In this tutorials you’ll able to List / Display records and Update records using PHP program with MySQL as a back-end database. First of all we will display list of all records entered into MySQL database using PHP page. Here is the code for that. 1. File name : list_records.php <?php $host=”localhost”; $username=”root”; $password=””; $db_name=”mars_db”; …

Display and Update records using PHP Read More »

Share

CPP Basic Programs-List1

Following are the list of C++ Programs. 1. C++ Program to display employee salary information. #include<iostream.h> #include<conio.h> class test { public: int bs, hra, pf, net; getdata(int bs1, int hra1, int pf1) { bs=bs1; hra=hra1; pf=pf1; net=bs+hra-pf; return(net); } void display() { cout <<“Net Salary=”<<net; } }; main() { clrscr(); test t; t.getdata(10000,3000, 1500); t.display(); …

CPP Basic Programs-List1 Read More »

Share
Share
Scroll to Top