本文整理汇总了PHP中form_end_tag函数的典型用法代码示例。如果您正苦于以下问题:PHP form_end_tag函数的具体用法?PHP form_end_tag怎么用?PHP form_end_tag使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了form_end_tag函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: form_tag
}
// Display the form, if raw option isn't set
if (!isset($_REQUEST['raw'])) {
print "<html>\n";
print "<head><title>EasyRdf Converter</title></head>\n";
print "<body>\n";
print "<h1>EasyRdf Converter</h1>\n";
print "<div style='margin: 10px'>\n";
print form_tag();
print label_tag('data', 'Input Data: ') . '<br />' . text_area_tag('data', '', array('cols' => 80, 'rows' => 10)) . "<br />\n";
print label_tag('uri', 'or Uri: ') . text_field_tag('uri', 'http://www.dajobe.org/foaf.rdf', array('size' => 80)) . "<br />\n";
print label_tag('input_format', 'Input Format: ') . select_tag('input_format', $input_format_options) . "<br />\n";
print label_tag('output_format', 'Output Format: ') . select_tag('output_format', $output_format_options) . "<br />\n";
print label_tag('raw', 'Raw Output: ') . check_box_tag('raw') . "<br />\n";
print reset_tag() . submit_tag();
print form_end_tag();
print "</div>\n";
}
if (isset($_REQUEST['uri']) or isset($_REQUEST['data'])) {
// Parse the input
$graph = new EasyRdf_Graph($_REQUEST['uri']);
if (empty($_REQUEST['data'])) {
$graph->load($_REQUEST['uri'], $_REQUEST['input_format']);
} else {
$graph->parse($_REQUEST['data'], $_REQUEST['input_format'], $_REQUEST['uri']);
}
// Lookup the output format
$format = EasyRdf_Format::getFormat($_REQUEST['output_format']);
// Serialise to the new output format
$output = $graph->serialise($format);
if (!is_scalar($output)) {
开发者ID:portokallidis,项目名称:Metamorphosis-Meducator,代码行数:31,代码来源:converter.php
示例2: text_field
}
}
?>
</ul>
</div>
<?php
}
?>
<?php
echo text_field($this->entity, "id");
?>
<?php
echo datetime_field($this->entity, "created_at");
?>
<?php
echo datetime_field($this->entity, "updated_at");
?>
<?php
echo text_field($this->entity, "email");
?>
<input type ="submit" value="Save" />
<?php
echo form_end_tag();
开发者ID:quyen91,项目名称:lfpr,代码行数:30,代码来源:_form.html.php
示例3: link_to
function link_to($url, $text, $html_code = "")
{
global $rHandler;
$html_attrs = "";
if ($html_code != "") {
foreach ($html_code as $key => $value) {
$html_attrs .= ' ' . $key . '="' . $value . '"';
}
}
if ($rHandler->find_method_for($url) == Makiavelo::VIA_POST) {
$html = form_tag($url, "post");
$html .= '<a href="#" type="submit" ' . $html_attrs . '>' . $text . '</a>';
$html .= form_end_tag();
} else {
$html = '<a href="' . $url . '" ' . $html_attrs . '>' . $text . '</a>';
}
return $html;
}
开发者ID:quyen91,项目名称:lfpr,代码行数:18,代码来源:form_helpers.php
注:本文中的form_end_tag函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论