Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a Web page named SoftwareRep.html to be used for storing software development bug reports in a MySQL database named SoftwareReport. Include fields such as

Create a Web page named SoftwareRep.html to be used for storing software development bug reports in a MySQL database named SoftwareReport. Include fields such as product name and version, type of hardware, operating system, frequency of occurrence, and proposed solutions. Name the PHP script as SoftwareRep.php

HTML file

SoftwareRep

PHP file

setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$pname = $_POST['pname']; $version = $_POST['version']; $hardware = $_POST['hardware']; $os = $_POST['os']; $freq = $_POST['freq']; $solutions = $_POST['solutions'];

$insQuery = "insert into table1 values (:pname,:version,:hardware,:os,:freq,:solutions)"; $insStmt = $conn->prepare($insQuery); $insStmt->bindParam(':pname',$pname); $insStmt->bindParam(':version',$version); $insStmt->bindParam(':hardware',$hardware); $insStmt->bindParam(':os',$os); $insStmt->bindParam(':freq',$freq); $insStmt->bindParam(':solutions',$solutions); $insStmt->execute(); ?>

Okay, so I already have the top part done. I'm needing help with this second part below in bold...

Create a separate Web form named SoftwareUpdate.html to be used for updating an existing bug report from the database above. Name the PHP script as SoftwareUpdate.php

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

Flash XML Applications Use AS2 And AS3 To Create Photo Galleries Menus And Databases

Authors: Joachim Schnier

1st Edition

0240809173, 978-0240809175

More Books

Students also viewed these Databases questions

Question

How does the concept of hegemony relate to culture?

Answered: 1 week ago