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


PHP Control::Controle_material方法代码示例

本文整理汇总了PHP中Control::Controle_material方法的典型用法代码示例。如果您正苦于以下问题:PHP Control::Controle_material方法的具体用法?PHP Control::Controle_material怎么用?PHP Control::Controle_material使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Control的用法示例。


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

示例1:

    $arr = $c->Controle_aula($_GET['aula'], null);
    for ($i = 0; $i < count($arr); $i++) {
        ?>
												<div id="tabs">
													<ul>
												    	<li><a href="#tabs-2">Aula: <?php 
        echo $arr[$i]->nome['nome'];
        ?>
</a></li>
												  	</ul>																								
													<div id="tabs-2">
														<table align="center" width="100%">
															<tr>
																<td width="55%">
																<?php 
        $arre = $c->Controle_material($arr[$i]->idaula['idaula']);
        for ($j = 0; $j < count($arre); $j++) {
            echo "<iframe src=\"pdf.php?pdf=../../material/" . FOLDER . "/" . $arre[$j]->endereco['endereco'] . "\" width=\"100%\" height=\"384px\" frameborder=\"0\"></iframe>";
        }
        ?>
																</td>															
																<td align="right">
																	<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="384" data-setup="{}">
																		<source src="video.php?tar=<?php 
        echo $arr[$i]->idaula['idaula'];
        ?>
" type='video/mp4' />
    																	<track kind="captions" src="vtt/<?php 
        echo $_SESSION['emailAluno'];
        ?>
.vtt" srclang="en" default><!-- Tracks need an ending tag thanks to IE9 -->																		
开发者ID:GlauberF,项目名称:Portal-curso-Online,代码行数:31,代码来源:vi_aula.php

示例2: Control

							<!--[if !IE]>start section content bottom<![endif]-->
							<span class="scb"><span class="scb_left"></span><span class="scb_right"></span></span>
							<!--[if !IE]>end section content bottom<![endif]-->

						</div>
						<!--[if !IE]>end section content<![endif]-->
					</div>
					<!--[if !IE]>end section<![endif]-->
				</div>
			</div>
			<div id="sidebar">
				<div class="inner">
				<?php 
if (isset($_GET['ed'])) {
    $c = new Control();
    $arr = $c->Controle_material($_GET['ed']);
    for ($i = 0; $i < count($arr); $i++) {
        ?>
				
					<div class="quick_info">
						<div class="quick_info_top">
							<h2>Dados do arquivo</h2>
						</div>
						<div class="quick_info_content">
							<dl>
								<dt>Nome:</dt>
								<dd><?php 
        echo $arr[$i]->endereco['endereco'];
        ?>
</dd>
							</dl>
开发者ID:GlauberF,项目名称:Portal-curso-Online,代码行数:31,代码来源:material.php


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