I have an sql table which is displayed in PHP and can also be filtered with a dropdown. The only problem is when I filter the table, the form reloads the page so some other functions on the page reset. So I need to filter the table without the form reloading the page so everything else stays the same and works.
I have tried "onSubmit="return false;", but that stops the whole form working.
Is there any other ways to stop it reloading, preferably with jquery or ajax.
Thanks
<?php
class DBController {
private $host = "hostname";
private $user = "username";
private $password = "password";
private $database = "databasename";
private $conn;
function __construct() {
$this->conn = $this->connectDB();
}
function connectDB() {
$conn = mysqli_connect($this->host,$this->user,$this->password,$this->database);
return $conn;
}
function runQuery($query) {
$result = mysqli_query($this->conn,$query);
while($row=mysqli_fetch_assoc($result)) {
$resultset[] = $row;
}
if(!empty($resultset))
return $resultset;
}
}
$db_handle = new DBController();
$Muscle_NameResult = $db_handle->runQuery("SELECT DISTINCT Muscle_Name FROM gym_exercises ORDER BY Muscle_Name ASC");
?>
<form method="POST" action="add-exercise.php" onSubmit="return false;">
<div id="demo-grid">
<div class="search-box">
<select id="Place" name="Muscle_Name[]" multiple="multiple">
<option value="0" selected="selected">Select Muscle_Name</option>
<?php
if (! empty($Muscle_NameResult)) {
foreach ($Muscle_NameResult as $key => $value) {
echo '<option value="' . $Muscle_NameResult[$key]['Muscle_Name'] . '">' . $Muscle_NameResult[$key]['Muscle_Name'] . '</option>';
}
}
?>
</select><br> <br>
<input id="Filter" type="submit" />
</div>
<?php
if (! empty($_POST['Muscle_Name'])) {
?>
<table cellpadding="10" cellspacing="1">
<thead>
<tr>
<th><strong>Exercise</strong></th>
<th><strong>Muscle</strong></th>
<th><strong>Push/Pull</strong></th>
</tr>
</thead>
<tbody>
<?php
$query = "SELECT * from gym_exercises";
$i = 0;
$selectedOptionCount = count($_POST['Muscle_Name']);
$selectedOption = "";
while ($i < $selectedOptionCount) {
$selectedOption = $selectedOption . "'" . $_POST['Muscle_Name'][$i] . "'";
if ($i < $selectedOptionCount - 1) {
$selectedOption = $selectedOption . ", ";
}
$i ++;
}
$query = $query . " WHERE Muscle_Name in (" . $selectedOption . ")";
$result = $db_handle->runQuery($query);
}
if (! empty($result)) {
foreach ($result as $key => $value) {
?>
<tr>
<td><div class="col" id="user_data_1"><button onclick="addExerciseName()"><?php echo $result[$key]['Exercise_Name']; ?></button></div></td>
<td><div class="col" id="user_data_2"><?php echo $result[$key]['Muscle_Name']; ?> </div></td>
<td><div class="col" id="user_data_3"><?php echo $result[$key]['PPS']; ?> </div></td>
</tr>
<?php
}
?>
</tbody>
</table>
<?php
}
?>
</div>
</form>
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
JavaScript is a multi-paradigm language that supports event-driven, functional, and mandatory (including object-oriented and prototype-based) programming types. Originally JavaScript was only used on the client side. JavaScript is now still used as a server-side programming language. To summarize, we can say that JavaScript is the language of the Internet.
https://www.javascript.com/
JQuery is arguably the most popular JavaScript library with so many features for modern development. JQuery is a fast and concise JavaScript library created by John Resig in 2006. It is a cross-platform JavaScript library designed to simplify client-side HTML scripting. Over 19 million websites are currently using jQuery! Companies like WordPress, Facebook, Google, IBM and many more rely on jQuery to provide a kind of web browsing experience.
https://jquery.com/
DBMS is a database management system. It is designed to change, search, add and delete information in the database. There are many DBMSs designed for similar purposes with different features. One of the most popular is MySQL.
It is a software tool designed to work with relational SQL databases. It is easy to learn even for site owners who are not professional programmers or administrators. MySQL DBMS also allows you to export and import data, which is convenient when moving large amounts of information.
https://www.mysql.com/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.