Friday, July 18, 2014

Configuration Code for MySql In php

<?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...

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

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

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;        ...

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;  ...

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'); ...

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[]...