Posts

Showing posts from 2013

Documentation

Final documentation of online recruitment system

Course combination For UQE

Click here for link To download open the link on upper left corner click on file >download as>pdf doc

UQE Msc IT Course Outlines

Click here to download

Results

Image

UQE Date sheet

2-july    web,db 3-july    s/w eng.ITPM 4-july    dcn,os

Result of final Semester

Image

UQE solved pappers

Click here to download UQE solved papers

result of erp

Image

Result of itpm

Image
Result of itpm

result of network securtiy

Image
Image

ERP Imp Slides

Click here to download erp slides (only imp)

Notes of network security

Click on below links to download docs Virtual Private Network (VPN )   Firewall

Guesses of ERP

The three tables on slide AM6(10), AM5(13, 17)  are in paper for sure. So make sure you know how they are working. AM1 (2,15,11,8) AM2 (3,4, 6-7) AM3 (6,10,7-9) AM4 (2,3) AM5 (6,2-4,7-9,11-12,15-16,22-24) AM6 (2-8)

Date Sheet

Image

Hiring In Ufone Call Center

Image

Edit funtion in PHP

<?php error_reporting(0); include("db.php"); $editId; if($_REQUEST['id'] != ""){ $id = $_REQUEST['id'] ;     $GLOBALS[$editId] = $id; } ?> <!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>Edit Document</title> <script type="text/javascript"> function editDone(){ <?php $id = $_REQUEST['name']; $email = $_REQUEST['email']; $password = $_REQUEST['password']; echo "id = $id + email = $email + pass = $password"; ?>        } </script> </head> <body> <table> <tr> <td>Name</td> <td><input type="text" name="name" /></td> </tr> <...

Code for Database Connection confirmation PHP+HTML

<html> <head> <title> web page 2</title> </head> <body> <?php error_reporting(0); $con=mysql_connect("localhost","root",""); if($con){     mysql_select_db('one',$con); echo "connection successfully"; } else{     echo "connection fail"; } $id=$_REQUEST['id']; $name=$_REQUEST['name']; $email=$_REQUEST['email']; $password=$_REQUEST['password']; $query="INSERT INTO `db1`.`one` (`id`, `name`, `email`, `password`) VALUES (NULL, '$name', '$email', '$password'); "; $r = mysql_query($query); if($r) {echo "inserted";} else {echo "error";} ?> </body> </html>

Database connect with php

<?php error_reporting(0); include("db.php"); if($_REQUEST['id'] != ""){ $id = $_REQUEST['id'] ; $del = "delete  from one where id = $id"; $dd = mysql_query($del);     } $q = "select * from one;"; $res = mysql_query($q); ?> <html> <head> <title>3rd page</title> </head> <body> <table border="2" cellpadding="2" cellspacing="2"> <tr> <td>ID</td> <td>Name</td> <td>Email</td> <td>Password</td> <td>Delete</td> <td>Edit</td> </tr> <?php while($row = mysql_fetch_array($res)){ ?> <tr> <td><?php echo $row['id']; ?></td> <td><?php echo $row['name']; ?></td> <td><?php echo $row['email']; ?></td> <td><?php echo $row['password']; ?></td> <td><button onClick=...

MOnte Carlito tool simulation

Tool for monte carlo provided by sir umer (ITPM) MonteCarlito 1.10 --- Free Excel Tool for Monte Carlo Simulation

Assignment of Research Method

Performance of   Windows XP, Windows Vista and Apple’s Leopard Computers under a Denial of Service Attack                                                   SUMMARY Abstract Distributed Denial of Service (DDOS) attacks are increasing over the Internet. DDOS attacks were launched on servers belonging to US and South Korean government. DDOS attacks are now considered a prominent threat to the internet. ICMP is used to diagnose and report any error in a network. ICMP is used by a user to verify the end to end Internet Path operation, where ICMP Echo Reply packet to confirm that host is alive in the network. IP Spoofing forms a platform for larger of DOS attacks. When a victim computer is flooded with ICMP Echo Requests...

New Slides

Notes of Network Security                             Data Encryption Standard   Click here for for further detail on DES   Assignment of Re search method........ Performance of Windows XP, Windows Vista and Apple's Leopard Computers under a Denial of Service Attack  IT PM slides ...... 6) 4- M ar _ Estimate Cost determine Budget 7) 25-mar-2013 _ Quality management 8) 9-Aprl-2013_Procurement Management     The assignments from lecture slides are following 1) Requirement traceability matrix. 2) WBS 3) WBS Dictionary 4)   Gantt Chart 5) Network Diagram 6) Milestone Chart 7) RACI CHART 8) Organizational Break Down structure   9) Issue Log   Click h ere for Rest of the templates  Please discuss in case of any ambiguity.  

Free Oracle Certification training

Image
Click here for more detail Click here for online registration

== & === operators in HTML

Image
                                                                                                                                               by   G.R

Single Quote & div in HTML

Image
by   G.R

Multipurpose Internet Mail Extensions (MIME)

Image
by   G.R

HTML & HTML5

Image
by   G.R

Types of CSS

Image
by   G.R

Requirements for comprehensive exam (UQE)

Image
   NOte: UQE forms are available at Abdul Wahab Photocopy shop. your are directed to collect these forms from photocopy shop and submit complete admission forms for UQE with RS 20 not later than 1 March 2013

HTML code for 3 different triangles and square shape

<!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>Assignment of Triangles</title> <script type="text/javascript">     function triangle_1st(){         for(y=1;y<=10;y++){             for(x=1;x<=y;x++){                 //         Author   ~~~~ me.atiq ~~~~                 document.write("*");             }            document.write("<br />");         }  ...

25-March time table

Tomorrow at 25-march 2013 first period will be of php 2nd class will be free 3rd class will be of research method by Sir Zeeshan instead of Networking class He will discuss something about papers.  

Documents Required for UQE form

Documents Required for UQE form (Monday ko ye documents apny hamrah lain) - 3 pic (passport size) - Matric, inter n graduation k result card ki copy - Students n fathers N.I.C card ki copy - A copy of registration card

UE's Naughty Confessions

Check this awesome Chawal by some of our uni fellow click here www.facebook.com

Form Validation

<!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>Msc I.T F11 A32</title> <style type="text/css"> .font{     font-size:20px;     font-family:"comic sans ms"; } .check{     font-size:16px;     font-weight:bold;     }     .error{         #FFF;         font-size:18px;         font-weight:bold;         display:none;     } </style> <script type="text/javascript"> function clear_text( val){     document.getElementById(val).style.display = 'none'; } function validate(){  var fname = document.getElementById...