在php中输入后打印出预设计证书

时间:2012-09-25 22:23:16

标签: php html

我有一个问题,也许有更好的方法在php旁边做这个但是我把这个想法扔到那里......让我知道你的专家意见。

  1. 我将有一个预先设计的证书,我将用PHP创建并用HTML设计。
  2. 用户将被定向到一个页面,输入要在证书上打印的名称。
  3. 最终结果的大小将为8 1/2“×11”准备打印。
  4. 显示我要求的内容的图片:Example of Design

    最好的方法是什么?或者是否有预先制作的东西,可以根据我的要求进行定制?

1 个答案:

答案 0 :(得分:3)

以下是Javascript中的一个示例。

<强> HTML

<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet">
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css" rel="stylesheet">
Enter Name:
<input id="who" type="text" />
<input id="submit" type="button" class="btn" value="Submit" />
<div id="certificate" style="text-align:center;display:none;">
    <h1>Certificate of Merit</h1>
    <h3>Presented To:</h3>
    <h4 id="name"></h4>
    <hr />
    <h2>Congratz</h2>
</div>​

<强>的Javascript

$('#submit').click(function() {
    $('#name').html($('#who').val());
    $('#certificate').fadeIn();
});​

JSFiddle http://jsfiddle.net/6SWVV/1/