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


PHP Team::queryof方法代码示例

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


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

示例1: and

<h2>Match Record</h2>
<p>
Match record is Played: {$team->Playedm} Won: {$team->Wonm}
Drawn: {$team->Drawnm} Lost: {$team->Lostm}.
</p>
<img src="php/piewdl.php?w={$team->Won}&d={$team->Drawn}&l={$team->Lost}">
<br />
<table class="teamdisp">
<tr>
\t<th>Date</th>
\t<th>Opponent</th>
\t<th>Result</th>
</tr>

EOT;
    $ret = mysql_query("select ind from lgmatch where result!='N' and result!='P' and ({$team->queryof('hteam')} or {$team->queryof('ateam')}) order by matchdate");
    if ($ret) {
        while ($row = mysql_fetch_array($ret)) {
            $mtch = new Match($row[0]);
            $mtch->fetchdets();
            $oppteam = $mtch->Hteam;
            if ($oppteam->is_same($team)) {
                $oppteam = $mtch->Ateam;
                switch ($mtch->Result) {
                    case 'H':
                        $res = 'Won';
                        break;
                    case 'D':
                        $res = 'Drawn';
                        break;
                    case 'A':
开发者ID:Britgo,项目名称:Online-League,代码行数:31,代码来源:teamdisp.php

示例2: Team

include 'php/session.php';
include 'php/checklogged.php';
include 'php/opendatabase.php';
include 'php/club.php';
include 'php/rank.php';
include 'php/player.php';
include 'php/team.php';
try {
    $team = new Team();
    $team->fromget();
    $team->fetchdets();
} catch (TeamException $e) {
    include 'php/wrongentry.php';
    exit(0);
}
$ret = mysql_query("delete from team where {$team->queryof()}");
if (!$ret) {
    $mess = "Cannot delete team";
    include 'php/dataerror.php';
    exit(0);
}
$nrows = mysql_affected_rows();
if ($nrows == 0) {
    $mess = "No team deleted";
    include 'php/dataerror.php';
    exit(0);
}
//  Next is no error if nothing gets deleted.
mysql_query("delete from teammemb where {$team->queryof('teamname')}");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
开发者ID:Britgo,项目名称:Online-League,代码行数:31,代码来源:delteam.php

示例3: exit

    $mess = "Total {$tot} does not match amount {$amount}";
    include 'php/wrongentry.php';
    exit(0);
}
try {
    if ($type == 'T') {
        $team = new Team($teamname);
        $team->fetchdets();
        // Error if this team has paid
        if ($team->Paid) {
            $mess = "Team {$teamname} have already paid??";
            include 'php/wrongentry.php';
            exit(0);
        }
        // Check we haven't already got a pending payment for this team
        $ret = mysql_query("select ind from pendpay where league='T' and {$team->queryof('descr1')}");
        if (!$ret) {
            $mess = mysql_error();
            include 'php/dataerror.php';
            exit(0);
        }
        if (mysql_num_rows($ret) > 0) {
            $mess = "Duplicated payment record for {$teamname}";
            include 'php/probpay.php';
            exit(0);
        }
        // Create a payment record for the team
        $qteam = mysql_real_escape_string($teamname);
        $ret = mysql_query("insert into paycompl (league,descr1,amount,paypal) values ('T','{$qteam}',{$amount},0)");
        if (!$ret) {
            $mess = mysql_error();
开发者ID:Britgo,项目名称:Online-League,代码行数:31,代码来源:manualpay2.php


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