在php表单中绘制正方形

时间:2015-03-27 15:07:29

标签: php html forms

我是php编码的新手,在我的项目中,我想在我制作的方形php表格周围绘制正方形。

但是,我这样做有困难...正如你可以看到下面的代码,我正在测试并尝试用下面的div绘制一个正方形,但它没有显示...有人可以建议什么有我做错了吗?

干杯, 卡伦

<?php
$to = 'sender@email.com';

$subject = 'HTML Form in HTML Email';

$headers = "From: receiver@email.com\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\n";

$message = '<html><body>';


$message .='<div style="width:10px; height:10px; border:1px black !important;">';
$message .='</div>';


$message .= '<form action="http://mysite/process.php" method="post" name="emailCrossword" target="_blank">';

$crossword = array();
$crossword = 6;

for ($i=0; $i<=$crossword.length; $i++){
    echo
    $message .= '<input type="text" style="width: 13px; text-transform:capitalize;" placeholder="text-align:center;" name="commentText" maxlength="1"></input>';
}

$message .= '<br/>';
$message .= '<br/>';
$message .= '<input type="submit" name="crossword" value="Submit your crossword" />&nbsp;</form>';

$message .= '</body></html>';

mail($to, $subject, $message, $headers);

?>

1 个答案:

答案 0 :(得分:2)

我不确定你想要实现的目标,但你的边界的css简写是错误的:

border:1px black !important;

应该是:

border:1px solid black !important;

显然是一条实线......