These are example scripts with short explanations drawn from the unpublished book "Quick and Easy Guide to Javascript" by Stephen Wilson Read more
In this section, we still using the same database as the previous section which is created by the following queries: #Create database CREATE DATABASE IF NOT EXISTS campus; #Activate database USE campus; #Create table CREATE TABLE IF NOT EXISTS students ( id INT PRIMARY KEY AUTO_INCREMENT, fullname VARCHAR(100), gender VARCHAR(10), faculty VARCHAR(50), Read more
To use database in C#, we must first connect to the database. To do that, we use a Connection object. In this case, we use MySqlConnection class. Basically, the code to connect to a database are:var conn = new MySqlConnection();conn.ConnectionString = "Server=localhost; Uid=root; Pwd=123; Port=3306;";conn.Open();//Do something to the Read more
A variable is just a storage for data of values in the program. In programming world, every variables has a datatype and in most programming language, C# included, a variable's datatype is determined when the variable is declared or initialized. There are several ways to declare a variable: [data type] [identifier];[data type] [identifier] = [value];[data type] [identifier Read more
This project is a source code example of an A* A-Level project for the AQA Computing CPT6 practical module. Project Features: Full database manipulationAdd recordDelete recordSave recordSave record fileValidationLogin system [with different levels of access]Report printing featuresDatabase backup featuresSearch and Sort features.Bubblesort and automatic searchAll coded in Delphi with no use of Read more
Collection of Delphi examples and applications with all the Delphi examples on our website. Full Delphi source code and project files. Over 50 examples such as: DatabaseReportingOpenGLClasses and ObjectsFile manipulationThreadsFiremonkey examplesIndy examplesand Read more
This page was created by Paul Conrad as part of his Graduate Independent Study (CSCI695) of the syntax and semantics of the PHP language.This page contains all of the code samples for PHP.See AlsoFor a quick, concise reference to terms used through out this page, see [ php.glossary.html ] which contains meta-linguistic terms, lexemes, and keyword definitions based on the C++ glossary found at [ Read more
Hello friends now we are going to discus a small code for creating Zip file using PHP. Creating zip file is simple as comparing with author languages. PHP have a very useful class called ZipArchive ,To create multiple zip files in this post i will show you how create a ZIP file Source <?php function Read more
Javascript is mainly used as a client side scripting language, while PHP is a server side technology. Unlike Java or ASP.Net, PHP doesn't have tools to make it work client side. That is why you need to combine JavaScript and PHP scripts to develop powerful web-applications. One of the frequent problems is defining visitor’s screen resolution using JavaScript tools and passing Read more
When working with VBA, a useful tool to have is a module which creates extracts of your work. If you produce frameworks, a complete listing of all components and procedures could prove useful in maintaining consistency in the model. Since the incorporation of the Visual Basic Editor into the Microsoft Office application suite, it is possible to have both. This article is intended to Read more
Use this command : RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^/system.* RewriteRule ^(.*)$ index.php?/$1 [NC,L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?/$1 Read more
this source code function generateConfirmCode($length) { //random by number and alphabet rand ((double) microtime() * 10000000); $input = array ("A", "B", "C", "D", "E","F","G","H","I","J","K","L","M","N","O","P","Q", "R","S","T","U","V","W","X","Y","Z","a", "b", "c", "d", "e","f","g","h","i","j","k","l","m","n","o","p","q", "r","s","t","u","v","w","x","y","z"); Read more
2019 © Pasar Kode-V3.
Privacy Policy |
Term of Service |
Language Contributor |
English |
Best view in Mozilla