当前位置: 首页>>代码示例>>PHP>>正文


PHP startblock函数代码示例

本文整理汇总了PHP中startblock函数的典型用法代码示例。如果您正苦于以下问题:PHP startblock函数的具体用法?PHP startblock怎么用?PHP startblock使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了startblock函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: NoticiasBack

        } else {
            //echo "Ha ocurrido un error, trate de nuevo!";
        }
        $imagen = $_FILES['uploadedfile']['name'];
        //Llamamos al metodo para insertar los datos
        $NoticiasBack = new NoticiasBack();
        $mensajeOk = $NoticiasBack->updateNoticia($titulo, $texto, $descarga, $fecha, $imagen, $categoria);
    }
}
include 'views/back/layout.php';
?>
 


<?php 
startblock('contenido');
?>
 

	<?php 
if (isset($_GET["id"])) {
    $CategoriasFront = new CategoriasFront();
    $NoticiasFront = new NoticiasFront();
    $NoticiasBack = new NoticiasBack();
    $resultado = $NoticiasBack->editarNoticia($_GET["id"]);
    while ($row = $resultado->fetch_assoc()) {
        $imagen = $NoticiasFront->imagenPortadaNoticia($row['id']);
        $categoria = $CategoriasFront->categoriaNoticia($row['id']);
        ?>
	<div >  
   	
开发者ID:gcalcagno,项目名称:cms-php,代码行数:30,代码来源:editarNoticia.php

示例2: define

<?php

define("TI_PROFILE", true);
//For performance info. Look at apache headers for profile info.
include '../stitch.php';
?>
<!DOCTYPE html>
<html>
	<head></head>
	<body>
		<div style="padding: 10px; background-color: #f0f0f0;">
			<?php 
defineblock('block1');
?>
			<br/>
			<?php 
startblock('block2');
?>
				Default text - block2
			<?php 
endblock();
?>
		</div>
	</body>
</html>
开发者ID:jasonshaw,项目名称:Stitch,代码行数:25,代码来源:template.php

示例3: ob_start

    </div>
    <!-- /.content-wrapper -->

    <?php 
ob_start();
include $_SERVER['DOCUMENT_ROOT'] . '/src/App/Views/admin/footer.php';
flushblocks();
?>

</div>


<!-- ./wrapper -->

<?php 
startblock('script_body_end_custom');
?>
<script>
    Kmiko.App.functions.require(
        ["ux.utils",
            "admin.formController",
            "admin.adminController"]
        , requiresLoad);

    function requiresLoad() {

        Kmiko.App.AdminController.init();
        Kmiko.App.AdminController.setAdminHeaderTitle('employee.titles.list');
        Kmiko.App.AdminController.setAdminHeaderSubtitle('employee.titles.list');
        Kmiko.App.AdminController.setAdminContentTitle('employee.titles.list');
开发者ID:kmikodev,项目名称:mvcpurephp,代码行数:30,代码来源:new.php

示例4: dirname

<? include dirname(__FILE__) . '/base.php' ?>

<? startblock('title') ?>
this is an even cooler title
<? endblock() ?>

<? startblock('content') ?>
thie is some even cooler content
<? endblock() ?>
开发者ID:Blaxus,项目名称:phpti,代码行数:9,代码来源:page2.php

示例5: xss_echo

    $contactnumber = xss_echo($_POST["txtCnumber"]);
    $email = xss_echo($_POST["txtEmail"]);
    $mysqli = new mysqli(SERVER, USER, PASSWORD, DATABASE);
    $query = "insert into addpatient (patientname, age, housenumber, fathername, address, contactnumber, email) VALUES ('{$name}','{$age}','{$housenumber}','{$fathername}','{$address}','{$contactnumber}','{$email}')";
    $r = mysqli_query($mysqli, $query);
    header('location: patient.php');
}
?>
 
  
  <?php 
endblock('filter');
?>
  
	<?php 
startblock("content");
?>
	<!--Your content goes here-->

	 <form id="myform" class="edaa_form" name="myform" action="" method="post" enctype="multipart/form-data"> 
		 <div style="padding-left:12px;text-align:left;"> 
		     <div> 
             <h2>Patient Form</h2>
             <hr />
		         <div style="font-size:14px;">Patient Name <span><?php 
?>
</span><span class="mandatory" style="color:#F00;">*</span> </div> 
		        <div style="height:2px;"></div>
		         <div> 
		             <input type="text" id="txtName" name="txtName" size="40" value="" required="required"/><br/> 
		 	      <div id="myform_txtName_errorloc" class="error_msg"></div> 
开发者ID:bmb3srik,项目名称:ritesh,代码行数:31,代码来源:add_patient.php

示例6: simpleblock

function simpleblock($name, $value = null, $filters = null)
{
    startblock($name, $filters);
    echo $value;
    endblock($name);
}
开发者ID:romackdnr,项目名称:HTML5-STRAPLESS,代码行数:6,代码来源:_inheritance.php

示例7: endblock

<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="/public/resources/bower/AdminLTE/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="/public/resources/bower/AdminLTE/dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
     folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="/public/resources/bower/AdminLTE/dist/css/skins/_all-skins.min.css">

<?php 
endblock('styles_default');
?>

<?php 
startblock('script_head');
?>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<?php 
endblock('script_head');
?>
<!-- =========================head====================== -->

开发者ID:kmikodev,项目名称:mvcpurephp,代码行数:29,代码来源:head.php

示例8: startblock

<?php 
startblock('articulos-relacionados');
?>
 

	<!--*** ARTICULOS RELACIONADOS ***-->
	<div class="bloque-posteos-relacionados bloque">
		<div class="subtitulo titulo-gris"> 
			<h3>Lo mas visto</h3>
		</div>
		<!--Bloque posteos-->
		<div class="posteos">
			<!--item post-->
			<div class="item col-xs-12 col-sm-4 col-md-4 ol-lg-4">
				<div class="imagen">
					<img src="assets/images/foto-post-1.jpg">
				</div>
				<div class="texto">
					<h6 class="text-uppercase text-naranja">Noticias</h6>
					<h4>Se creó la reserva Nacional en Pizarro Salta</h4>
					<p>Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. </p>
				</div>
			</div>
			<!-- item post-->
			<!--item post-->
			<div class="item col-xs-12 col-sm-4 col-md-4 ol-lg-4">
				<div class="imagen">
					<img src="assets/images/foto-post-2.jpg">
				</div>
				<div class="texto">
开发者ID:gcalcagno,项目名称:losquesevan,代码行数:30,代码来源:articulos-relacionados.php

示例9: Script

include 'footer.php';
include 'jsLinks.php';
?>
		<!-- Include Scripts-->
		<script type="text/javascript" src="js/jQuery-hashchange.js"></script>       

	<!-- Script (JS files) block Start -->
	<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-46860115-2', 'redirectme.net');
  ga('send', 'pageview');

</script>
	<?php 
startblock('script');
?>
		
	<?php 
endblock();
?>
	<!-- Script block End -->


</body>

</html>
开发者ID:rahul-satal,项目名称:faculty_website,代码行数:30,代码来源:base_full_width.php

示例10: startblock

<?php

include 'template.php';
?>

<?php 
startblock('block1');
?>
	Overridded text 1
<?php 
endblock();
?>

<?php 
startblock('block2', TI::APPEND);
?>
	Appended text 2
<?php 
endblock();
开发者ID:jasonshaw,项目名称:Stitch,代码行数:19,代码来源:page.php

示例11: startblock

<!DOCTYPE HTML>
<html>
<head>
	<? startblock("css_files");?>
	<style>
		body {}
		#content {margin-left:auto; margin-right:auto;padding: 20px; width: 1000px; background-color: #ffffff;}
		table {
			margin : 0 auto;
			width: 100%;
		    border-collapse: collapse;
		}
		#vehicle, .journeys {margin-top:5px;}
		td {padding-left:10px;}
		tr {padding-top: 2px; padding-bottom: 2px; height: 40px; font-size: smaller;}
		tr.first_row, td.first_column  {background-color:#dddddd; font-weight:bold;}
		table, th, td {
		    border: 1px solid black;
		}
		
		.member_photo { width:200px; padding-top:10px; padding-bottom:10px;}
		#vehicle {
		}
	</style>
</head>
<body>
	<section id="content">
		<button id="print-btn" style="background-color:red; font-size: larger">CLICK TO PRINT</button>
		<h2>Silk Route Motorcaravan Network Membership</h2>
		<table id="crew" class='crew'>
			<col width="200">
开发者ID:robertblackwell,项目名称:srmn,代码行数:31,代码来源:html.php

示例12: search

<?php

require 'init2.php';
$origin = $_GET['orig'];
$destination = $_GET['dest'];
$date = $_GET['date'];
$type = $_GET['type'];
$results = search($origin, $destination, $date, $type);
startblock('body');
?>
<div class="container-fluid" id="recent">
	<div class="row">
		<div class="col-sm-10 col-sm-offset-1">
			<?php 
if (count($results) > 0 && NULL != $results) {
    ?>
				<?php 
    for ($i = 0; $i < count($results); $i++) {
        ?>
					<div class="col-sm-12 single-post <?php 
        if ($results[$i]->type == 'wanted') {
            echo "wanted";
        } else {
            echo "offering";
        }
        ?>
">

						<div class="row">
									<div class="col-xs-4 block">
										<?php 
开发者ID:emmajc39,项目名称:qrideshare,代码行数:31,代码来源:search.php

示例13: get_extended_block

?>
q
    <?php 
echo get_extended_block();
?>
    <script>
    $( document ).ready(function(){
        $('#menu_place').addClass('active');
    });
    </script>
<?php 
endblock();
?>

<?php 
startblock('bodycontent');
?>
<br>
<br>
<div class="body-nav">
	<div class="container">
		<div class="row">
			<div class="col-md-6 col-sm-6 col-xs-6">
				<h1>船家</h1>
			</div>
			<div class="col-md-6 col-sm-6 col-xs-6">
				<button onclick="location.href='index.php?show=new-owner'" type="button" class="btn btn-primary pull-right"><span class="glyphicon glyphicon-plus-sign"></span> 新增</button>
			</div> 
		</div>
	</div>
</div>
开发者ID:kostya1017,项目名称:our,代码行数:31,代码来源:list_owner-old.php

示例14: startblock

<?php

include 'views/front/layout.php';
?>
 

<?php 
startblock("contenido");
?>
 

	<?php 
$FuncionesConfig = new FuncionesConfig();
$NoticiasFront = new NoticiasFront();
$CategoriasFront = new CategoriasFront();
if (isset($_SESSION['usuario'])) {
    foreach ($usuarioCategoria as $categoria) {
        ?>
	
			<!--*** CATEGORIA USUARIO ***-->
			<div class="bloque-posteos-relacionados bloque">
				<div class="subtitulo titulo-naranja"> 
					<h3>
						<i class="icon-menu logout icon glyphicon glyphicon-star "></i> 
						<?php 
        echo $categoria;
        ?>
					</h3>
				</div>
				<!--Bloque posteos-->
				<div class="posteos">
开发者ID:gcalcagno,项目名称:cms-php,代码行数:31,代码来源:index.php

示例15: startblock

<?php

require_once "base.php";
include 'index_load.php';
?>

<?php 
startblock('head');
?>
    <link rel="stylesheet" type="text/css" href="css/index.css" />
<?php 
endblock('head');
?>


    <article>
        <div>
            <div>새로운 문제
            
                <div>
                <div><ul>
                  <?php 
try {
    $LP = new loadProblem();
    $news = $LP->newproblem();
} catch (Exception $e) {
    //header("Loaction:error.php");
}
foreach ($news as $new) {
    ?>
                
开发者ID:KeoSeong,项目名称:project,代码行数:30,代码来源:index.php


注:本文中的startblock函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。