Someone Please help me to correct the code please. Cause I want to put it in the PHP code to display. Thanks.
input from a form and post the variables to here......
<?php
......
......
......
printf("<table border=\"0\" width=\"438\" height=\"20\">\n");
printf("<tr><td width=\"432\">Add Records</td></tr>\n");
printf("</table>\n");
printf("<table width=\"435\"><tr>\n");
printf("<td width=\"16\" height=\"15\"></td>\n");
printf("<td width=\"249\" height=\"15\" colspan=\"2\"></td>\n");
printf("<td width=\"21\" height=\"15\"></td>\n");
printf("<td width=\"150\" height=\"15\" colspan=\"2\"></td>\n");
printf("</tr>\n");
printf("<tr>\n");
printf("<td width=\"16\">¡¡</td>\n");
printf("<td width=\"249\" colspan=\"2\">Record A</td>\n");
printf("<td width=\"21\" >¡¡</td>\n");
printf("<td width=\"150\" colspan=\"2\">Record B</td>\n");
printf("</tr>\n");
printf("<tr>");
printf("<td width=\"16\">¡¡</td>\n");
printf("<td width=\"249\" colspan=\"2\"><input type=\"text\" name=\"record_a\" value=\"<?php echo \$POST['record_a'] ?>\" size=\"32\"></td>\n");
printf("<td width=\"21\">¡¡</td>\n");
printf("<td width=\"150\" colspan=\"2\"><input type=\"text\" name=\"record_b\" value=\"<\?php echo \$POST['record_b'] ?>\" size=\"15\"></td>\n");
printf("</tr>\n");
printf("<tr>\n");
printf("<td width=\"16\" height=\"10\"></td>\n");
printf("<td width=\"249\" height=\"10\" colspan=\"2\"></td>\n");
printf("<td width=\"21\" height=\"10\"></td>\n");
printf("<td width=\"150\" height=\"10\" colspan=\"2\"></td>\n");
printf("</tr></table>");
?>
<html>
<head><title>Add Records</title></head>
<body bgcolor="#CCCCFF">
</body>
</html>
it give me some parse errors.. Please give me a hand on this please.
thanks.