Month: March 2016

Month: March 2016

How to import an SQL file using the command line in MySQL?
Image March 6, 2016 Mysql sourav

We always upload a a database in our sql through import. But when You import a huge/heavy size sql file then we need to used command. It is very easy step :- Try: mysql -u username -p database_name < file.sql A common use of mysqldump is for making a backup of an entire database: shell>
Details

Bouncing Ball in Java Script
Image March 6, 2016 JavaScript sourav

This script uses a the setTimeout() Method to perform a sequence of Image Swaps that create the animation. The setTimeout() Method accepts two arguments, the name of a Function that you want to call and the number of milliseconds you want to wait before calling the Function. The name of the Function needs to be
Details

android
Image March 6, 2016 android sourav

Set Up Your Environment In Android Studio, create a new project: If you don’t have a project opened, in the Welcome screen, click New Project. If you have a project opened, from the File menu, select New Project. The Create New Project screen appears. Fill out the fields on the screen, and click Next.It is
Details

Uploading Multiple Files
Image March 6, 2016 NET sourav

In ASP.NET 2.0, the FileUpload control enables users to upload file from your web pages. The FileUpload control consists of a text box and a browse button. Clicking on the button allow users to select a file on the client and upload it to the server. Let us first start off by exploring how to
Details

Create The Upload File PHP
Image March 6, 2016 php sourav

How you upload a file in PHP. You need to create a html file with a form . Then need to create a folder with 777 permission . First, ensure that PHP is configured to allow file uploads. In your “php.ini” file, search for the file_uploads directive, and set it to On: file_uploads = On.
Details

C program examples code
Image March 6, 2016 c programming sourav

C program examples code C if Statement if (test expression) { statement/s to be executed if test expression is true; } The if statement checks whether the text expression inside parenthesis () is true or not. If the test expression is true, statement/s inside the body of if statement is executed but if test is
Details