-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41de488
commit cf2bb4d
Showing
60 changed files
with
9,277 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
$servername = "localhost"; | ||
$username = "root"; | ||
$password = ""; | ||
$dbname = "scdatabase"; | ||
$code = $_GET["id"]; | ||
// Create connection | ||
$conn = new mysqli($servername, $username, $password, $dbname); | ||
// Check connection | ||
if ($conn->connect_error) { | ||
die("Connection failed: " . $conn->connect_error); | ||
} | ||
|
||
$sql = "DELETE triggerjudgement, judgement FROM triggerjudgement INNER JOIN judgement ON triggerjudgement.cno =judgement.caseno WHERE triggerjudgement.cno=$code "; | ||
|
||
if ($conn->query($sql) === TRUE) { | ||
header('Location: loggedinJV.php'); | ||
} else { | ||
echo"0"; | ||
} | ||
|
||
$conn->close(); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,268 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="css/box.css"> | ||
<link rel="stylesheet" type="text/css" href="css/menubar.css"> | ||
<link rel="stylesheet" type="text/css" href="css/pop.css"> | ||
<link rel="stylesheet" type="text/css" href="css/abtbody.css"> | ||
<link rel="stylesheet" type="text/css" href="css/table.css"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | ||
<style> | ||
header | ||
{ | ||
background-color:#191970; | ||
padding: 1px; | ||
font-size: 15px; | ||
color: white; | ||
} | ||
footer { | ||
background-color: #191970; | ||
padding: 20px; | ||
text-align: center; | ||
color: white; | ||
margin-top: 500px; | ||
|
||
} | ||
</style> | ||
<style> | ||
.drop1 { | ||
padding: 16px; | ||
font-size: 16px; | ||
border: darkblue; | ||
cursor: pointer; | ||
} | ||
|
||
.drop1:hover, .drop1:focus { | ||
background-color: #2980B9; | ||
} | ||
|
||
.drop1 { | ||
position: relative; | ||
display: inline-block; | ||
} | ||
|
||
.dropdown-content { | ||
display: none; | ||
position: absolute; | ||
background-color:#191970; | ||
min-width: 150px; | ||
overflow: auto; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
.dropdown-content a { | ||
color: white; | ||
padding: 12px 16px; | ||
text-decoration: none; | ||
display: block; | ||
} | ||
|
||
.drop1 a:hover {background-color: #ddd;} | ||
|
||
.show {display: block;} | ||
</style> | ||
|
||
<title>Advocates|Supreme Court Of India</title> | ||
|
||
</head> | ||
<header> | ||
<center><a style="text-decoration:none;color:white" href="home.html"><h1>Supreme Court Of India</h1></a></center> | ||
<center><h3>|| यतो धर्मस्ततो जयः ||</h3></center> | ||
</header> | ||
|
||
<div class="slideshow-container"> | ||
<div class="mySlides fade"> | ||
|
||
<img src="img/slide1.jpg" style="width:100%"> | ||
<div class="text"></div> | ||
</div> | ||
<div class="mySlides fade"> | ||
|
||
<img src="img/slide4.jpg" style="width:100%"> | ||
<div class="text"></div> | ||
</div> | ||
|
||
<div class="mySlides fade"> | ||
|
||
<img src="img/slide3.jpg" style="width:100%"> | ||
<div class="text"></div> | ||
</div> | ||
</div> | ||
<br> | ||
|
||
<div style="text-align:center"> | ||
<span class="dot"></span> | ||
<span class="dot"></span> | ||
<span class="dot"></span> | ||
</div> | ||
<script> | ||
var slideIndex = 0; | ||
showSlides(); | ||
function showSlides() { | ||
var i; | ||
var slides = document.getElementsByClassName("mySlides"); | ||
var dots = document.getElementsByClassName("dot"); | ||
for (i = 0; i < slides.length; i++) { | ||
slides[i].style.display = "none"; | ||
} | ||
slideIndex++; | ||
if (slideIndex > slides.length) {slideIndex = 1} | ||
for (i = 0; i < dots.length; i++) { | ||
dots[i].className = dots[i].className.replace(" active", ""); | ||
} | ||
slides[slideIndex-1].style.display = "block"; | ||
dots[slideIndex-1].className += " active"; | ||
setTimeout(showSlides, 1000); // Change image every 2 seconds | ||
} | ||
</script> | ||
<ul> | ||
<li><a href="home.html">Home</a></li> | ||
<li><a href="nc.html">Notices & Circulars</a></li> | ||
<li><a href="do.php">Daily Orders</a></li> | ||
<li><a href="ef.html">E-Filling</a></li> | ||
|
||
|
||
<li style="float:right"> | ||
<div class="dropdown"> | ||
<a id="drop1" onclick="myFunction()">About The Court</a> | ||
<div id="myDropdown" class="dropdown-content"> | ||
<a href="history.html">History</a> | ||
<a href="contact.html">Contact</a> | ||
</div> | ||
</div> | ||
</li> | ||
<script> | ||
/* When the user clicks on the button, | ||
toggle between hiding and showing the dropdown content */ | ||
function myFunction() { | ||
document.getElementById("myDropdown").classList.toggle("show"); | ||
} | ||
// Close the dropdown if the user clicks outside of it | ||
window.onclick = function(event) { | ||
if (!event.target.matches('.drop1')) { | ||
|
||
var dropdowns = document.getElementsByClassName("dropdown-content"); | ||
var i; | ||
for (i = 0; i < dropdowns.length; i++) { | ||
var openDropdown = dropdowns[i]; | ||
if (openDropdown.classList.contains('show')) { | ||
openDropdown.classList.remove('show'); | ||
} | ||
} | ||
} | ||
} | ||
</script> | ||
</ul> | ||
<div id="id01" class="modal"> | ||
|
||
<form class="modal-content animate" action="/action_page.php"> | ||
<div class="imgcontainer"> | ||
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span> | ||
<img src="img/supreme.jpg" alt="Avatar" class="avatar"> | ||
</div> | ||
|
||
<div class="container2"> | ||
<label for="uname"><b>Username</b></label> | ||
<input type="text" placeholder="Enter Username" name="uname" required> | ||
|
||
<label for="psw"><b>Password</b></label> | ||
<input type="password" placeholder="Enter Password" name="psw" required> | ||
|
||
<button type="submit">Login</button> | ||
<label> | ||
<input type="checkbox" checked="checked" name="remember"> Remember me | ||
</label> | ||
</div> | ||
|
||
<div class="container2" style="background-color:#f1f1f1"> | ||
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button> | ||
<span class="psw"> <a href="#">Forgot password?</a></span> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
<script> | ||
// Get the modal | ||
var modal = document.getElementById('id01'); | ||
|
||
// When the user clicks anywhere outside of the modal, close it | ||
window.onclick = function(event) { | ||
if (event.target == modal) { | ||
modal.style.display = "none"; | ||
} | ||
} | ||
</script> | ||
<body> | ||
<div> | ||
<div class="card"> | ||
<div class="header"> | ||
<h3>Quick Links</h3> | ||
</div> | ||
|
||
<div class="container"> | ||
<a rel="Click Here" style="text-decoration:none" href="judges.php"><h5>●Judges</h5></a> | ||
<a rel="Click Here" style="text-decoration:none;color:red;" href="advocates.php"><h5>●Advocates</h5></a> | ||
<a rel="Click Here" style="text-decoration:none" href="casestatus.php"><h5>●Case Status</h5></a> | ||
<a rel="Click Here" style="text-decoration:none" href="jv.php"><h5>●Judgements & Verdicts</h5> | ||
</a><a rel="Click Here" style="text-decoration:none" href="cavet.php"> <h5>●Caveat</h5></a> | ||
<a rel="Click Here" style="text-decoration:none" href="casecategory.php"><h5>●Case Category</h5></a> | ||
<a rel="Click Here" style="text-decoration:none" href="cfshow.php"> <h5>●Court Fees</h5></a> | ||
</div> | ||
|
||
</div> | ||
<div class="desc"> | ||
<h2>Advocates</h2> | ||
<hr> | ||
|
||
<table > | ||
<tr> | ||
<th>Name</th> | ||
<th>Aor Code</th> | ||
<th>Mobile no.</th> | ||
<th>Email-Id</th> | ||
<th>Address</th> | ||
<th>Charge Per Appearance</th> | ||
<th>Acheivments</th> | ||
</tr> | ||
<?php | ||
$servername = "localhost"; | ||
$username = "root"; | ||
$password = ""; | ||
$dbname = "scdatabase"; | ||
$code=$_POST["id"]; | ||
|
||
// Create connection | ||
$conn = new mysqli($servername, $username, $password, $dbname); | ||
// Check connection | ||
if ($conn->connect_error) { | ||
die("Connection failed: " . $conn->connect_error); | ||
} | ||
|
||
$sql = "SELECT name,code,mobile_no,email_id,address,charge,acheivments FROM advocates where code='$code'"; | ||
$result = $conn->query($sql); | ||
|
||
if ($result->num_rows > 0) { | ||
// output data of each row | ||
|
||
while($row = $result->fetch_assoc()) { | ||
echo "<tr><td> " . $row["name"]."</td><td>".$row["code"]."</td><td>".$row["mobile_no"]."</td><td>".$row["email_id"]."</td><td>".$row["address"]."</td><td>".$row["charge"]."</td><td>".$row["acheivments"]."</td></tr>"; | ||
} | ||
} else { | ||
echo "0 results"; | ||
} | ||
$conn->close(); | ||
|
||
?> | ||
|
||
</table> | ||
|
||
</div> | ||
</div> | ||
</body> | ||
<footer> | ||
<p>Government Of India ● 2018</p> | ||
</footer> | ||
</html> |
Oops, something went wrong.