Jump to content

my form isnt diplaying


brad12345

Recommended Posts

hi all

 

my form isnt displaying on screen, the text at the top saying "Catalogue" and "enter text here" and also the "select catagory" button are displaying just not the form, any ideas why?

 

<?php
session_start();
include ('serverConnect.inc.php');
?>
<!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=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="stylesheet.css" /></head>
<title>Untitled Document</title>
</head>

<body>
<div id="wrap">
<div class="header"></div>
<div class="headerSpacer">
<a href="index.php">Home</a> | <a href="catalogue.php">Catalogue</a> | 
<?php
if(!isset($_SESSION['CustID']))
{
echo "<a href='login.php'>Login</a>";
}
if(isset($_SESSION['CustID']))
{
echo "<a href='logout.php'>Logout</a>";
}
?> | <a href="register.php">Register</a>
</div>
<div class="content">
<?php
//Select all 
$query = "select * from TblItem order by Category";
$result = mysql_query($query)
or die ("Couldnt execute query.");

//Display headers html
echo "<h1 align='center'>Catalogue</h1>
<h2 align='center'>enter text here</h2>\n";

//create form containing selection list
echo "<form action='showCategory.php' method ='post'>\n";
echo "<table cellpadding='5' border='1'>";
$counter=1;
while ($row = mysql_fetch_array($result))
{
extract($row);
echo "<tr><td valign='top' width='15%'>\n";
echo "<input type='radio' name='interest' value='$Category'\n";
if ($counter == 1)
{
echo "checked";
}
echo "<font size='+1'><b>$Category</b></font>";
echo "</td>
		<td>$Description</td>";
echo "</tr>";
$counter++;
}
echo "</table>";
echo "<p><input type='submit' value='Select Category'>
	</form>\n";				
?></div>
<div class="bottom"></div>
</div>
</body>
</html>

 

thanks for any help :)

Link to comment
https://forums.phpfreaks.com/topic/112127-my-form-isnt-diplaying/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.