本文整理汇总了PHP中CodFormat类的典型用法代码示例。如果您正苦于以下问题:PHP CodFormat类的具体用法?PHP CodFormat怎么用?PHP CodFormat使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CodFormat类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: CodFormat
<td width="40%" height="100%" border="0" alt=""></td>
<td width="780" height="35" border="0" alt="" bgcolor="#FFFFFF" class="Text2">
<table border="0" cellpadding="0" cellspacing="0" width="780">
<tr>
<!-- contenido pagina -->
<td width="768" height="854" border="0" alt="" valign="top">
<br><p></p>
<center>
<?php
$tituloForm = "MODIFICACIÓN <br/>DE COMENTARIO";
$paginaForm = '';
require_once 'CodFormat.php';
$codFormat = new CodFormat();
$codFormat->setStrBD($_SESSION['mapeo']);
$formatoForm = $codFormat->SelectFormato(61);
$datosTipificacion['strNoConfServ'] = $datosReclamacion['strReclamacion'];
$disabledForm = 'disabled';
//date_default_timezone_set('Europe/Madrid');
$fechaForm = $datosReclamacion['datFechaAlta'];
require_once 'cabeceraForm.php';
?>
<div class="doc">
<hr color = "#FF9900">
<br/>
<form name="form1" method="post" action="../vista/reclmod.php" enctype="multipart/form-data" onSubmit="desactivaBoton()">
<table width="640" border="0" class="zonaactiva">
<tr>
<td class="subtitulo" colspan="6"> Datos del Cliente</td>
开发者ID:QualidadInformatica,项目名称:qualidad1,代码行数:31,代码来源:reclmod.php
示例2: CodFormat
<td width="40%" height="100%" border="0" alt="" ></td>
<td width="780" height="35" border="0" alt="" bgcolor="#FFFFFF" class="Text2">
<table border="0" cellpadding="0" cellspacing="0" width="780">
<tr>
<!-- contenido pagina -->
<td width="768" height="854" border="0" alt="" valign="top">
<br><p></p>
<center>
<?php
$tituloForm = "PARTES INTERESADAS<br/>ALTA VALORACIÓN IMPACTO";
$paginaForm = '';
require_once 'CodFormat.php';
$codFormat = new CodFormat();
$codFormat->setStrBD($_SESSION['mapeo']);
//$formatoForm=$codFormat->SelectFormato(60);
$numeroForm = '';
$disabledForm = 'disabled';
date_default_timezone_set('Europe/Madrid');
$fechaForm = date('d/m/Y');
require_once 'cabeceraForm.php';
?>
<div class="doc">
<hr color = "#FF9900">
<br/>
<form name="form1" method="post" action="../vista/PartIntValAlta.php" onSubmit="desactivaBoton()">
<table width="640" border="0" class="zonaactiva">
开发者ID:QualidadInformatica,项目名称:qualidad1,代码行数:31,代码来源:PartIntValAlta.php
示例3: pagina
//.........这里部分代码省略.........
var isnDays= new initArray("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sabado","Domingo")
today=new Date()
hrs=today.getHours()
min=today.getMinutes()
sec=today.getSeconds()
clckh=""
clckm=""
clcks=""
clck=""
var stnr=""
var ns="0123456789"
var a="";
// End Hiding -->
</script>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 rightMargin=0 bottomMargin=0 marginwidth="0" marginheight="0" background="../images/fondo.gif" onLoad="rotulo_status();">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<!-- Cabecera-->
<tr>
<td colspan="2" width="40%" height="100%" border="0" alt="" ></td>
<td width="780" height="35" border="0" alt="" bgcolor="#FFFFFF" class="Text2">
<table border="0" cellpadding="0" cellspacing="0" width="780">
<tr>
<!-- contenido pagina -->
<td width="768" height="854" border="0" alt="" valign="top">
<br><p></p>
<center>
<?php
$tituloForm = "COMENTARIOS<br>DE CLIENTE";
$paginaForm = '';
require_once '../vista/CodFormat.php';
$codFormat = new CodFormat();
$codFormat->setStrBD($_SESSION['mapeo']);
$formatoForm = $codFormat->SelectFormato(60);
$numeroForm = '';
$disabledForm = 'disabled';
date_default_timezone_set('Europe/Madrid');
$fechaForm = date('d/m/Y');
require_once '../reclamacionExterna/cabeceraForm.php';
?>
<div class="doc">
<hr color = "#FF9900">
<br/>
<form name="form1" method="post" action="../reclamacionExterna/reclamacionExterna.php" onSubmit="desactivaBoton()">
<table width="640" border="0" class="zonaactiva">
<tr>
<td class="subtitulo" colspan="6"> Datos del Cliente</td>
</tr>
<tr>
<td width="150">
<div align="left">
<label class="nombreCampoRojo">Nombre</label>
<input class="textbox1Obligatorio" type="text" name="strClienteNombre" maxlength="30"
onMouseOver="onMouseOverInputText(this);" onMouseOut="onMouseOutInputTextObligatorio(this);" onfocus="onFocusInputText(this);" onblur="onBlurInputTextObligatorio(this);"
value="<?php
echo $datosCliente['strNombre'];
?>
" />
</div>
</td>
<td width="50"></td>
<td colspan="3">
开发者ID:QualidadInformatica,项目名称:qualidad1,代码行数:67,代码来源:reclamacionExterna.php
注:本文中的CodFormat类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论