Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vemarun committed Apr 15, 2018
0 parents commit bf89b96
Show file tree
Hide file tree
Showing 13,604 changed files with 13,135 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
14 changes: 14 additions & 0 deletions .idea/deployment.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/market.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

192 changes: 192 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions assets/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
$(document).ready(function () {

$(function () {

$("#search").keyup(function (e) {
e.preventDefault();



var value = $("#search").val();

$.ajax({
type: 'GET',
url: 'check_price_ajax.php',
data: 's=' + value,
success: function (data) {
$('.list-item').html(data);


}

});

});
return false;
});

});
3 changes: 3 additions & 0 deletions backup/New folder (2)/db_connect.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php
$db=mysqli_connect("localhost", "root", "", "market");
?>
Loading

0 comments on commit bf89b96

Please sign in to comment.