Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Lets say I have a table that consists field name= Jack, age=17, address= UK For now the code only read first field (name) and wont

Lets say I have a table that consists field name= Jack, age=17, address= UK

For now the code only read first field (name) and wont read if i enter a single age or address field.

Search: "Jack" - data is shown Search: "UK" - data is not shown

How to search the keywords based on the field either name, age and address or all at once.

$con = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);

if(isset($_POST["submit"])) { $search = $_POST["searchname"]; $search = strtoupper($search); $search = strip_tags($search); $search = trim($search);

$arr = explode(' ', $search); $arr_condition = array(); $arguments = array(); foreach ($arr as $ar) { $arr_condition[] = 'name LIKE ? ' AND 'age LIKE ? ' AND 'address LIKE ? ' ; $arguments[] = '%'.$ar.'%'; }

$sth = $con->prepare('SELECT * FROM `tableuser` WHERE '.implode(' OR ', $arr_condition));

$sth->setFetchMode(PDO:: FETCH_OBJ); $sth -> execute($arguments); $result = $sth -> fetchAll();

if ($sth->rowCount()>0) { foreach($result as $row) { ?>

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Seven Databases In Seven Weeks A Guide To Modern Databases And The NoSQL Movement

Authors: Luc Perkins, Eric Redmond, Jim Wilson

2nd Edition

1680502530, 978-1680502534

More Books

Students also viewed these Databases questions

Question

LO3 Name the seven categories of HR functions.

Answered: 1 week ago

Question

Define organisational structure

Answered: 1 week ago

Question

Define line and staff authority

Answered: 1 week ago

Question

Define the process of communication

Answered: 1 week ago

Question

Explain the importance of effective communication

Answered: 1 week ago

Question

* What is the importance of soil testing in civil engineering?

Answered: 1 week ago