Merge branch 'release-test' of https://github.com/Shobika/Vulnerable-Web-Application into release-test

This commit is contained in:
shobikaramasubbarayalu 2022-02-22 12:49:37 -05:00
commit ea6c5027b2
4 changed files with 12 additions and 0 deletions

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

6
.idea/misc.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -27,6 +27,7 @@
// Create connection
$conn = new mysqli($servername, $username, $password,$db);
$conn = mysqli_connect($servername,$username,$password,$db);
// Check connection
if ($conn->connect_error) {

View File

@ -20,6 +20,8 @@
</form>
</div>
<?php
$servername = "localhost";
$username = "root";