-
Notifications
You must be signed in to change notification settings - Fork 10
/
chatbox1.php
37 lines (32 loc) · 1.9 KB
/
chatbox1.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
include("sqlcon.php");
if(isset($_POST[chatstudent_id]))
{
$_SESSION[chat1student_id] = $_POST[chatstudent_id];
}
$sqlstudent = "SELECT tbluser.userid as student_id, `name` as student_name,profilepic FROM `tbluser` inner join tblcourse on tbluser.courseid = tblcourse.courseid inner join tblalumniphoto on tbluser.userid=tblalumniphoto.userid WHERE tbluser.userid=$_SESSION[chat1student_id]";
$qsqlstudent = mysqli_query($con,$sqlstudent);
$rsstudent = mysqli_fetch_array($qsqlstudent);
/* ### */ ?>
<div class="chat-box-div">
<div class="chat-box-head" style="cursor:pointer;" onClick="chat1sessiontoggle()">
<?php echo $rsstudent[student_name]; /* ### */ ?>
<div class="btn-group pull-right">
<a href="#" onClick="chat1close()"><span class="fa fa-times-circle" style="font-size: 30px;color:darkred;"></span> </a>
</div>
</div>
<div class="panel-body chat-box-main" id="chatmessage1" style="background-color:#F8F8F8;height:250px;">
<?php
$stid = $_SESSION[chat1student_id];
include("jsloadmsg.php");
/* ### */ ?>
</div>
<div class="chat-box-footer" id="chatmessagefooter1">
<div class="input-group">
<input type="text" class="form-control" id="txtchat1" placeholder="Press Enter key to Send.." onkeyup="submitchat(<?php echo $stid; /* ### */ ?>,Student,this.value,event)">
<span class="input-group-btn">
<button class="btn btn-info" type="button" onClick="submitbtnchat(<?php echo $stid; /* ### */ ?>,Student,txtchat1.value,event)">SEND</button>
</span>
</div>
</div>
</div>