Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hello, Im putting php into an html file, and my teacher gave us a template for uploading the table into the HTML. I have a

Hello, I"m putting php into an html file, and my teacher gave us a template for uploading the table into the HTML. I have a table called gamies. Where do I need to make the change in the following code for it to dsiplay the following table:

image text in transcribed

$host = "localhost";

$user = "root";

$password = "";

$database = "test";

$query = "";

//OPEN CONNECTION TO THE DATABASE

$connection = mysqli_connect ($host, $user, $password, $database);

//RUN QUERY AGAINST TABLE AND FETCH RESULT

$result_set = mysqli_query($connection, $query);

//$result = mysqli_fetch_assoc($result_set);

//LOOP THROUGH RESULT SET AND PRINT DATA

//GET COUNT

$count = mysqli_num_rows ($result_set);

echo "There are " . $count . " rows
";

//USE FOR LOOP

for($i=0; $i

{

$result = mysqli_fetch_assoc($result_set);

echo "

";

echo "

";

echo "

";

echo "

";

echo "

";

echo "

";

}

//CLOSE THE CONNECTION

mysqli_close ($connection);

?>

" . $result[''] . "" . $result[''] . "" . $result[''] . "" . $result[''] . "

Product Name Cards Against Hue-Maat price 523.99 age range 18 Mad-Blab A game of trying 514.75 Ticket to Hide 12.50 you 12.50, Has your girlfriend150

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

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

13th Edition Global Edition

1292263350, 978-1292263359

More Books

Students also viewed these Databases questions

Question

Have issues been prioritized?

Answered: 1 week ago

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago