Hi all,
just to get this out of the way i have now been working on html / css / php / mysql coding for about 3 weeks.
So i dont know too much, on to the problem...
I am creating a database for asset managment in and out of our shop I have setup the db and it works with no issues.
So I am currently trying to add fluff as i put it.
The guys in the shop want the web page to have a table of information on what is in the shop and when they click on the asset number in the table they want it to open a new page where you can edit the database information of that item.
I have no clue how to emplement this after reading diffrent ideas for about 4 hours today I am just stuck and confused.
any ideas or tips would be helpfull
This first block of code is my status page.
<style>
tr
{font-size:24px;}
button
{width:120px}
</style>
<body topmargin="50px">
<?php
session_start();
include("../../Connections/db_connection.php");
$table = "shop_inventory";
mysql_select_db("$db_database", $connect);
unset ($db_username, $db_password);
$currenttime = getdate();
$result = mysql_query("SELECT * FROM shop_inventory WHERE In_Shop='1'");
$test = mysql_fetch_array($result);
echo "<table border='1' align='center' style='text-align:center' cellpadding='10' width='100%'>
<tr>
<th>Asset number</th>
<th>Building</th>
<th>Room number</th>
<th>In date</th>
</tr>";
$_SESSION['array_row'] = $test;
while($row = mysql_fetch_array($result))
{
$style = '';
//if ($currenttime - $row['Entered_Shop_Time'] == 0 || 1)
$style = 'style="background-color:#00FF00"';
echo "<tr>";
echo "<td> <button onClick=../subpages/edititems.php>" . $row['Asset'] . "</button> </td>";
echo "<td>" . $row['Building'] . "</td>";
echo "<td>" . $row['Room_Number'] . "</td>";
echo "<td $style>" . date("F j, Y", strtotime($row['Entered_Shop_Time'])) . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($connect);
?>
</body>
This second block of code is the page where i want to dump the table info into for editing.
<?php
session_start();
include("../../Connections/db_connection.php");
$table = "shop_inventory";
mysql_select_db("$db_database", $connect);
unset ($db_username, $db_password);
//$Asset = $_POST['Asset'];
$Session = $_SESSION['array_row'];
//$data = mysql_query("SELECT * FROM shop_inventory WHERE Asset=$session");
//$query = mysql_query($data) or die ("Cannot select database." . mysql_error());
//$Session = mysql_fetch_array($data);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Add Items</title>
</head>
<body>
<div style=" padding-top:5px;">
<h1><center>Add New Items</center></h1>
</div>
<form name="myForm" action="afteredititems.php" method="post">
Asset Number: <input type="text" name="Asset" value="<?php echo $Session['Asset']?>"/><br /><br />
Manufacture: <input type="text" name="Manufacture" value="<?php echo $Session['Manufacture']?>"/><br /><br />
Model: <input type="text" name="Model" value="<?php echo $Session['Model']?>"/><br /><br />
Serial Number: <input type="text" name="Serial_Number" value="<?php echo $Session['Serial_Number']?>"/><br /><br />
Building: <input type="text" name="Building" value="<?php echo $Session['Building']?>"/><br /><br />
Room Number: <input type="text" name="Room_Number" value="<?php echo $Session['Room_Number']?>"/><br /><br />
<input type="hidden" name="In_Shop" value="1"/>
Type of Equipment: <select name="Type" value="<?php echo $Session['Type']?>">
<option value="desktop">Desktop</option>
<option value="laptop">Laptop</option>
<option value="ipad">Ipad</option>
<option value="ipod">Ipod</option>
<option value="projector">Projector</option>
<option value="printer">Printer</option>
</select><br /> <br />
<center><input type="submit" value="Add Item"/></center>
</form>
</body>
</html>
And lastly I have a page that redisplays the edited information.
<?php
//$Asset = $_POST['Asset'];
//$data = mysql_query("SELECT * FROM shop_inventory WHERE Asset=$Asset");
//$query = mysql_query($data) or die ("Cannot select database." . mysql_error());
//$data2 = mysql_fetch_array($data);
include("../../Connections/db_connection.php");
$table = "shop_inventory";
mysql_select_db("$db_database", $connect);
unset ($db_username, $db_password);
$Asset = $_POST['Asset'];
$Manufacture = $_POST['Manufacture'];
$Model = $_POST['Model'];
$Sn = $_POST['Serial_Number']; //<---- possibly fubar check sn everywhere
$Building = $_POST['Building'];
$Room_Number = $_POST['Room_Number'];
$Type = $_POST['Type'];
$data = mysql_query("UPDATE `shop_inventory` SET Manufacture='$Manufacture', Model='$Model', Serial_Number='$Sn', Building='$Building', Room_Number='$Room_Number', Type='$Type' WHERE Asset=$Asset");
//$query = mysql_query($data) or die("could not execute query.". mysql_error());
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<!-- display changes -->
Asset: <?php echo $Asset ?><br />
Manufacture: <?php echo $Manufacture ?><br />
Model: <?php echo $Model ?><br />
Serial number: <?php echo $Sn ?><br />
Building: <?php echo $Building ?><br />
Room Number: <?php echo $Room_Number ?><br />
Type: <?php echo $Type ?><br /><br />
</body>
</html>
I know there is a lot of poorly formated code and more then likely it is hard to read as I was going to do cleanup after I had all my features working.
After doing all the digging i found out about sessions and how they are used to pass data, I thought it would be a good method but I just could not figure out how to send information from the table if the table is reciving its info from an array.
any help would be appreciated thanks.