<?php
// db constants
defined('DB_SERVER') ? NULL : define("DB_SERVER", 'localhost');
defined('DB_USER') ? NULL : define("DB_USER", 'root');
defined('DB_PASS') ? NULL : define("DB_PASS", '');
defined('DB_NAME') ? NULL : define("DB_NAME", 'DataBase Name');
?&g...
Friday, July 18, 2014
Initializing Website With PHP
<?php
// Define the core paths
// Define them as absolute paths to make sure that require_once works as expected
// DIRECTORY_SEPARATOR is a PHP pre-defined constant
// (\ for Windows, / for Unix)
defined('DS') ? null : define('DS', '/');
defined('SITE_ROOT') ? null :
define('SITE_ROOT', DS.'wamp'.DS.'www'.DS.'folderName');
defined('LIB_PATH')...
Wednesday, July 9, 2014
Sessions in PHP
<?php
/* $Revision: 1.44 $ */
if (!isset($PathPrefix)) {
$PathPrefix='';
}
include($PathPrefix . 'config.php');
if (isset($SessionSavePath)){
session_save_path($SessionSavePath);
}
...
Making Pdf format class in php
<?php
/*
This class is an extension to the fpdf class using a syntax that the original reports were written in
(the R &OS pdf.php class) - due to limitation of this class for foreign character support this wrapper class
was written to allow the same code base to use the more functional fpdf.class...
Uses of fonts in php
<?php
$type='Type1';
$name='Helvetica-Bold';
$desc=array('Ascent'=>718,'Descent'=>-207,'CapHeight'=>718,'Flags'=>32,'FontBBox'=>'[-170 -228 1003 962]','ItalicAngle'=>0,'StemV'=>140);
$up=-100;
$ut=50;
$cw=array(
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600,
...
LogIn code in PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document&...
PHP code for Registration
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html;...
Connection code in PHP
<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_name = "localhost";
$database_name = "name";
$username_name = "root";
$password = "";
$job = mysql_pconnect($hostname_name, $username_name, $password) or trigger_error(mysql_error(),E_USER_ERROR);
?&g...
PHP code To update
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document...
Insert Code In PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document...
PHP Code To Edit
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
<head>
<meta http-equiv="content-type" content="text/html;...
Delet Data In PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document&...
Monday, June 2, 2014
Master Page code in ASP.NET
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MainMaster.master.cs" Inherits="MainMaster" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head...
Saturday, May 31, 2014
Sample code that change Background color On selection of color of own choice
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>HELLO WORLD:</title>
<style type="text/css">
...
Code To display data in grid view from Database
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using DALBlueWhale.Entities;
using System.Data;
public partial class ManageEmployees : System.Web.UI.Page
{
Employee _employee;
DataTable...
Gridview Property In ASP.NET
<%@ Page Title="" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true" CodeFile="ManageEmployees.aspx.cs" Inherits="ManageEmployees" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1"...
Database Entities Classes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace DALBlueWhale.Entities
{
public class Employee
{
DBWrapper _db;
DataTable _tabl...
ASP.NET form to Add new Users
<%@ Page Title="BlueWhale | Add Employee" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true" CodeFile="AddEmployee.aspx.cs" Inherits="AddEmployee"%>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2"...
DBWrapper Class In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
namespace DALBlueWhale
{
public class DBWrapper
{
ConnectionProvider _connProvider;
...
Connection to The Database sample code In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Configuration;
namespace DALBlueWhale
{
public class ConnectionProvider
{
SqlConnection _connectio...
Code To Add New Users and Get Data fro drop down List
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using DALBlueWhale.Entities;
using System.Data.SqlClient;
using DALBlueWhale;
public partial class AddEmployee : System.Web.UI.Page
{
...
Configuration Setting For Form Authentication In web.config file In Asp.net
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<connectionStrings>
<add name="ConnStr" connectionString="Data...
LogIn Page Authentication In ASP.NET
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using DALBlueWhale.Entities;
using...
Monday, March 10, 2014
Debug and trace in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Diagnostics; // need this to use the Debug class
namespace DebugAndTrace
{
class Program
{
static void Main(string[] args)
...
Garbage collection in c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GarbageCollection
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Allocated...
Variable Param in c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VariableParams
{
class Program
{
static void Main(string[] args)
{
int result;
...
Using Events iN C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace UsingEvents
{
public delegate void myEventHandler(string newValue);
class EventExample
{
private string theValue;
...
Using Delegates in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UsingDelegates
{
public delegate int NumberFunction (int x);
class Program
{
static void Main(string[] args)
...
Namespaces and Optional Params iN C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NamedOptionalParams
{
class Program
{
static void Main(string[] args)
{
// call...
Functions Param Modifiers in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FuncParamModifiers
{
class Program
{
static void SquareAndRoot(double num, out double sq, out double sqrt)
{
...
ReadingWritingData
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace ReadingWritingData
{
class Program
{
static void Main(string[] args)
{
...
PathOperations
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO; // need this for file and directory information
namespace PathOperations
{
class Program
{
static void Main(string[] args)
...
namespace ExistingDir
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO; // need this namespace to work with files and directories
namespace ExistingDir
{
class Program
{
static void Main(string[] args)
...
namespace Existing
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO; // we need to add this reference to use Files and Directory information
namespace Existing
{
class Program
{
static void Main(string[] args)
...
Wednesday, February 12, 2014
Using Exceptions In C#
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
...
RethrowingExceptions in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RethrowingExceptions
{
class Program
{
static void DoSomeMath()
{
int x = 10,...
Exception Objects In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ExceptionObject
{
class Program
{
static void Main(string[] args)
{
int x =...
Custome Exceptions iN C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CustomExceptions
{
public class NoJoesException : Exception
{
public NoJoesException() : base("We don't allow no Joes in here!")
...
Using Struct inC#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UsingStructs
{
public struct Point
{
private int xCoord;
private int yCoord;
public Point(int...
Using Interfaces In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UsingInterfaces
{
interface ITalkative
{
void SayHello();
void SayGoodBye();
}
class myExampleClass...
Sealed Classes Representation In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SealedClasses
{
class myExampleClass
{
public static string myMethod(int arg1)
{
...
Method Overriding In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MethodOverriding
{
class baseClass
{
public virtual void doSomething()
{
Console.WriteLine("This...
Method Overloading In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MethodOverloading
{
class Wine
{
public int Year;
public string Name;
public decimal price;
...
Abstract classes in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AbstractClasses
{
abstract class myBaseClass
{
public abstract int myMethod(int arg1, int arg2);
}
class myDerivedClass...
Stack In C#(How it works)
using System;
using System.Collections; // we need to add this reference to use Files and Directory information
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Stacks
{
class Program
{
static void Main(string[]...
Tuesday, February 4, 2014
Ques in C#
using System;
using System.Collections; // we need to add this reference to use Files and Directory information
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Queues
{
class Program
{
static void Main(string[]...
Array List In C#
using System;
using System.Collections; // we need to add this reference to use Files and Directory information
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ArrayLists
{
class Program
{
static void Main(string[]...
Value And Reference Types in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ValAndRefTypes
{
public class Point
{
public int x;
public int y;
}
class Program
...
Defining properties in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DefiningProperties
{
class Wine
{
private string Name;
private int year;
private string Apellation;
...
Defining Class Cont.......
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DefiningAClass
{
class MyClass
{
int myInteger;
string myMessage;
void myFunction()
...
Defining Class In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DefiningAClass
{
class MyClass
{
int myInteger;
string myMessage;
public static int myStaticInt...
Variable scope
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VariableScope
{
class Program
{
static void Main(string[] args)
{
...
Loops In C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Loops
{
class Program
{
static void Main(string[] args)
{
int myVal = 15;
...
Function And Methods
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FuncsAndMethods
{
class Program
{
static void Main(string[] args)
{
int result1;
...
TypeCasting in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TypeCasting
{
class Program
{
static void Main(string[] args)
{
Program objProg...
Usin loops and printin Shape
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SwitchStatmnt
{
class Program
{
static void Main(string[] args)
{
for (int...
Rectangleapplication: it returns the lenght and width
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Rectangleapplication
{
class Rectangle
{
double length;
double width;
public void AcceptDetails()
...
Is Operator in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IsOperatorSample
{
public class Animal
{
}
public class Vehicle
{
}
public class Car : Vehicle
...
ExplicitConversion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ExplicitConversion
{
class Program
{
static void Main(string[] args)
{
double...
DoubleVsDecimal in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DoubleVsDecimal
{
class Program
{
static void Main(string[] args)
{
float fnum1...
Const And Enums in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConstAndEnum
{
public enum weekdays
{
sunday,
monday
}
// demonstrates how...
ArthematicOperators in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ArthematicOperators
{
class Program
{
static void Main(string[] args)
{
int...
Multiple Cases. Falling Through!
<html>
<head>
<title></title>
</head>
<body>
<?php
$i = 5;
switch ($i) {
case 0:
echo '$i is 0.';
...