Skip to content

Commit aab67eb

Browse files
committed
Uploading code
0 parents  commit aab67eb

31 files changed

+1709
-0
lines changed

Create_event.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Create Your Event</title>
6+
<link rel="stylesheet" href="style1.css">
7+
</head>
8+
<body>
9+
<div class="body"></div>
10+
<div class="grad"></div>
11+
<div class="header">
12+
<div>Create Your<br><span>EVENT</span></div>
13+
</div>
14+
<br>
15+
<div class="login">
16+
<form action="submit.inc.php" method="POST" >
17+
<input type="text" name="Name" placeholder="Name">
18+
<br>
19+
<input type="text" name="Event_Title" placeholder="Event Title">
20+
<br>
21+
<input type="text" name="Room Name" placeholder="Room Name">
22+
<br>
23+
<button type="submit" name="submit" >Create Event</button>
24+
</form>
25+
</div>
26+
</body>
27+
</html>

Create_event.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Create Event</title>
5+
6+
</head>
7+
<body>
8+
<form action="submit.inc.php" method="POST" >
9+
<input type="text" name="Name" placeholder="Name">
10+
<br>
11+
<input type="text" name="Event_Title" placeholder="Event Title">
12+
<br>
13+
<input type="text" name="Room Name" placeholder="Room Name">
14+
<br>
15+
<button type="submit" name="submit">Submit</button>
16+
</form>
17+
18+
19+
</body>
20+
</html>

Dashboard.png

97.9 KB
Loading

Join.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Join Event</title>
6+
<link rel="stylesheet" href="style1.css">
7+
</head>
8+
<body>
9+
<div class="body"></div>
10+
<div class="grad"></div>
11+
<div class="header">
12+
<div>Join<br><span>EVENT</span></div>
13+
</div>
14+
15+
<br>
16+
17+
<div class="login">
18+
<form action="submit1.inc.php" method="POST" >
19+
<input type="text" name="Name" placeholder="Name">
20+
<br>
21+
<input type="text" name="Room Name" placeholder="Room Name">
22+
<br>
23+
<button type="submit" name="submit" >Join Event</button>
24+
</form> </div>
25+
26+
</body>
27+
</html>

Join_event.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Join Event</title>
5+
</head>
6+
<body>
7+
<form action="submit1.inc.php" method="POST" >
8+
<input type="text" name="Name" placeholder="Name">
9+
<br>
10+
<input type="text" name="Room Name" placeholder="Room Name">
11+
<br>
12+
<button type="submit" name="submit">Submit</button>
13+
</form>
14+
15+
16+
</body>
17+
</html>

Readme.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
MEET WORLD
2+
3+
4+
Instructions to run the file
5+
* Download the code directly and save it in same folder
6+
* Start My SQL and Apache from XAMPP
7+
* Run the file on a local host server (Index.php)
8+
* Other files are linked to it directly
9+
* The tables create_event and join_event should be there on PHP My Admin for the files to run smoothly
10+
* Everything should be operated using a local host sever
11+
12+
13+
14+
15+
16+
17+
18+
19+
Team Members-:
20+
21+
22+
1.Dishti Oberai(leader) - [email protected]
23+
2.Sweety Agarwal - [email protected]
24+
3.Rajat Bansal - [email protected]
25+
26+
27+
28+
29+
Credits-
30+
1. Video-conferencing tutorial from tokbox.com
31+
2. PHP Myadmin tutorials from Dani Krossing playlist

dbh.inc.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
$dbServername = "localhost";
4+
$dbUsername = "root";
5+
$dbPassword = "";
6+
$dbName = "create_event";
7+
8+
$conn = mysqli_connect($dbServername, $dbUsername, $dbPassword, $dbName);
9+
?>

dbh1.inc.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
$dbServername = "localhost";
4+
$dbUsername = "root";
5+
$dbPassword = "";
6+
$dbName = "join_event";
7+
8+
$conn = mysqli_connect($dbServername, $dbUsername, $dbPassword, $dbName);

delete.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
include("dbh1.inc.php");
3+
error_reporting(0);
4+
5+
$Name=$_GET['n'];
6+
$query= "DELETE FROM 'join_event' ";
7+
8+
$data=mysqli_query($conn,$query);
9+
10+
header("Location: ../Virtual%20networking");
11+

images/1.jpg

205 KB
Loading

0 commit comments

Comments
 (0)