Hello all,
while($row = mysql_fetch_array($result)) {
echo "<tr>";
echo "<td>" . $row['sharename'] . "</td>";
echo "<td>" . $row['ip'] . "</td>";
echo "<td>" . $row['model'] . "</td>";
echo "<td>" . $row['physicalLocation'] . "</td>";
echo "<td>" . $row['building'] . "</td>";
echo "<td>" . $row['notes'] . "</td>";
echo '<td> <a href="pages/printerEdit.php?id=' . $row['id'] . '">Edit</a></td> ';
echo "</tr>";
}
Simple while loop that I have displaying information into a table for users to look at it.
My question is - I have a content div that everything opens into. Is it possible to specify that content div for the printerEdit.php page? On my navigation, I have a “javascript:ajaxpage” call that opens all my pages without the page refreshing, but I don’t want printerEdit.php to open a new page.
Thanks!