コード例 #1
0
ファイル: designed_form.php プロジェクト: jordanlev/phorms
		list-style: disc inside;
	
	}
	</style>
</head>
<body>
<div id="rtCont">		
	<table width="100%" height="324"  border="0" cellpadding="6" cellspacing="0" class="redborder  maintable">
		<tr>
			<td>
				<h2>Order Form</h2>
			</td>
		</tr>
		
		<?php 
if ($form->has_errors()) {
    ?>
		<tr>
			<td>
				<div class="errors">
					<p>Could not submit your request due to the following errors:</p>
					<ul>
						<?php 
    echo $form->display_errors('<li>', '</li>');
    ?>
					</ul>
				</div>
			</td>
		</tr>
		<?php 
}