NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io


<?php
session_start();

if(!isset($_SESSION["username"])){
echo "<script>window.location = 'index.php'</script>"; //user not logged in
}


include('php/functions.php'); //for like and comment functionalities

$token = get_token(20);
$_SESSION['token'] = $token;

$master_username=$_SESSION['username']; //master array contains all information of the logged in user

$db_wall=mysqli_connect('localhost','root','','creation');
$master_query="SELECT * FROM `profile` WHERE `username`='$master_username'";

$temp_res_5=mysqli_query($db_wall,$master_query);
$row6=mysqli_fetch_array($temp_res_5);

$master_pic=$row6['profile_pic'];
$master_name=$row6['name'];
$master_nerd_name=$row6['nerd_name'];
$master_branch=$row6['branch'];
$master_email=$row6['email_id'];
$master_contact=$row6['contact_no'];
$_SESSION['master_pic']=$master_pic;
$_SESSION['master_nerd_name']=$row6['nerd_name'];


//-------------------------Finding Hyperlinks in a text....---------------------------------------------------

$rexProtocol = '(https?://)?';
$rexDomain = '((?:[-a-zA-Z0-9]{1,63}.)+[-a-zA-Z0-9]{2,63}|(?:[0-9]{1,3}.){3}[0-9]{1,3})';
$rexPort = '(:[0-9]{1,5})?';
$rexPath = '(/[!$-/0-9:;=@_':;!a-zA-Zx7f-xff]*?)?';
$rexQuery = '(?[!$-/0-9:;=@_':;!a-zA-Zx7f-xff]+?)?';
$rexFragment = '(#[!$-/0-9:;=@_':;!a-zA-Zx7f-xff]+?)?';

// Solution 1:


$rexProtocol = '(https?://)?';
$rexDomain = '((?:[-a-zA-Z0-9]{1,63}.)+[-a-zA-Z0-9]{2,63}|(?:[0-9]{1,3}.){3}[0-9]{1,3})';
$rexPort = '(:[0-9]{1,5})?';
$rexPath = '(/[!$-/0-9:;=@_':;!a-zA-Zx7f-xff]*?)?';
$rexQuery = '(?[!$-/0-9:;=@_':;!a-zA-Zx7f-xff]+?)?';
$rexFragment = '(#[!$-/0-9:;=@_':;!a-zA-Zx7f-xff]+?)?';
// Solution 1:

function callback($match)
{
// Prepend http:// if no protocol specified
$completeUrl = $match[1] ? $match[0] : "http://{$match[0]}";

return '<a href="' . $completeUrl . '">'
. $match[2] . $match[3] . $match[4] . '</a>';
}
//-------------------------Finding hyperlinks in a text ends--------------------------------------------------
?>



<!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>Tech Portal IITI - Home</title>
<meta charset="utf-8" />
<title>Den Of Geeks </title>

<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" href="styles/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="styles/bootstrap.css" type="text/css" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.js" ></script>
<script src="js/bootstrap.min.js" > </script>
<script src="js/bootstrap-filestyle.min.js"> </script>

<link rel="stylesheet" href="styles/dashboard.css" type="text/css" />
<script type="text/javascript">
function cycleImages() {
var images = $('#banner_area img'),
now = images.filter(':visible'),
next = now.next().length ? now.next() : images.first(),
speed = 1000;

now.fadeOut(speed);
next.fadeIn(speed);
}

$(function () {
setInterval(cycleImages, 1400);
});</script>

</head>

<style type="text/css">

body {
font-family:arial,helvetica,sans-serif;
font-size:12px;
}

#wrapper {
width:1000px;
margin:0px auto;
border:1px solid #bbb;
padding:10px;
margin-left: 250px;
height: 1000px;
}

#header {
border:1px solid #bbb;
height:50px;
padding:10px;
font-weight: bold;
}
#project-title{

border:1px solid #bbb;
height:60px;
padding:10px;
font-weight: bold;
width: 480px;

}
#project-des{

border:1px solid #bbb;
height:100px;
padding:10px;
font-weight: bold;
width: 480px;

}
#project-cont{

border:1px solid #bbb;
height:40px;
padding:10px;
font-weight: bold;
width: 480px;

}


#content {
margin-top:10px;
padding-bottom:10px;

}
#content div {
padding:10px;
border:1px solid #bbb;
float:left;

}
#banner_area{
width:180px;
height: 200px;
}
#content-main {
margin-left:10px;
width:500px;
height: 800px;
}
#content-right {
margin-left:10px;
width:270px;
height: 300px;
}

#footer {
float:left;
margin-top:10px;
margin-bottom:10px;
padding:10px;
border:1px solid #bbb;
width:980px;
}
#bottom {
clear:both;
text-align:right;
}
#banner_area img
{
display:none;
position: absolute;
}
#banner_area img:first-child
{
display:block;
}
#banner_area > img /* Use this to resize all image's container */
{
width:155px;
height:180px;
}

</style>
<body>
<div id="myModal" class="reveal-modal">
<a class="close-reveal-modal">&#215;</a>
</div>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header"> <a class="navbar-brand" href="#">IIT Indore</a> </div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">

<li><a href="wall.php"><span class="glyphicon glyphicon-th-large"></span> Wall </a></li>
<li><a href="profile.php"><span class="glyphicon glyphicon-user"></span>Account</a></li>
<li><a href="profile_change.php"><span class="glyphicon glyphicon-cog"></span> Settings</a></li>
<li><a href="logout.php"><span class="glyphicon glyphicon-off"></span> Logout</a></li>
</ul>

</div>
</div>
</div>
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<li>
<img src="<?php echo $master_pic;?>" class="img-profile" />
</li>
<br />
<li><a href="geek_search.php"><span class="glyphicon glyphicon-question-sign"></span> Search Geekness</a></li>
<li><a href="db_search.php"><span class="glyphicon glyphicon-search"></span>&nbsp;Search Database</a></li>
<li><a href="badge.php"><span class="glyphicon glyphicon-tower"></span>&nbsp;Den Of Geeks</a></li>
<li><a href="Project.php"><span class="glyphicon glyphicon-book"></span>&nbsp;Projects</a></li>
</ul>
</div>

<div id="wrapper">
<div id="header">List Of Ongoing Projects</div>
<div id="content">

<div id="banner_area">
<img class="active" src="images/i1.jpg" />
<img src="images/i2.jpg" />
<img src="images/i3.jpg" />
<img src="images/i4.jpg" />
</div>

<div id="content-main">
<div id="project-title">
<a>Title: Indexing Multimodal Biometric Database for Fast and Accurate Person Authentication.</a></div>
<div id="project-des"><p>Description:Department: Computer Science and Engineering.</p></div>
<div id="project-cont"><p>Contact: Prof. Monalisa Sarma</p></div><br>
<div id="project-title">
<a>Title: Indexing Multimodal Biometric Database for Fast and Accurate Person Authentication.</a></div>
<div id="project-des"><p>Description:Department: Computer Science and Engineering.</p></div>
<div id="project-cont"><p>Contact: Prof. Monalisa Sarma</p></div><br>
<div id="project-title">
<a>Title: Indexing Multimodal Biometric Database for Fast and Accurate Person Authentication.</a></div>
<div id="project-des"><p>Description:Department: Computer Science and Engineering.</p></div>
<div id="project-cont"><p>Contact: Prof. Monalisa Sarma</p></div><br>

</div>



<div id="content-right">
<h3 style="text-align:center">Updates</h3>
<marquee behaviour="scroll" hspace="30px" direction="up"onmouseover="stop" scrolldelay="150ms">sufriushifuidhgjdgfugsifdjdfgjdgudvfjsgdfg</marquee>

</div>
</div>
<div id="footer">





</div>
<div id="bottom"></div>
</div
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.