コード例 #1
0
<link rel="stylesheet" href="app_needed/style.tipsy.css" type="text/css" />
</head>

<body>
<div id="wrapper">
	<?php 
include "module.header.php";
?>
	<?php 
include "module.menu.php";
?>
	<div class="content">
		<div class="info">
		<h1><?php 
if ($_GET[unique]) {
    echo language('PAGE_edit_banner_title') . $campaign->get_name();
} else {
    echo language('PAGE_create_banner_title');
}
?>
 </h1>
		</div>
        <form name="my-form" action="app_needed/ajax.functions.php" method="POST" enctype="multipart/form-data">
        <?php 
if ($_GET[unique]) {
    ?>
 <input type="hidden" name="unique" value="<?php 
    echo $campaign->get_unique();
    ?>
"  /> <?php 
}
コード例 #2
0
ファイル: list-campaigns.php プロジェクト: BersnardC/DROPINN
        </div>
        </div>
        <?php 
$sql = "SELECT * FROM `app_campaigns` WHERE `unique_user` = '" . $_SESSION[unique] . "' ORDER BY `date` DESC ";
$result = mysql_query($sql);
while ($campaigns = mysql_fetch_array($result)) {
    $campaign = new class_campaigns($campaigns[unique]);
    ?>
      <div class="box list" id="<?php 
    echo $campaign->get_unique();
    ?>
">
          <table width="100%" border="0">
            <tr>
              <td width="52%"><strong><?php 
    echo $campaign->get_name();
    ?>
</strong></td>
              <td width="18%" class="<?php 
    echo $campaign->get_status();
    ?>
 none"><?php 
    if ($campaign->get_valid() == 1 || $campaign->get_valid() == 2) {
        ?>
<input type="checkbox" class="switcher" id="c<?php 
        echo $campaign->get_unique();
        ?>
" <?php 
        if ($campaign->get_valid() == 1) {
            echo "checked";
        }
コード例 #3
0
ファイル: stats-agents.php プロジェクト: BersnardC/DROPINN
<link rel="stylesheet" href="app_needed/style.tipsy.css" type="text/css" />
</head>

<body>
<div id="wrapper">
	<?php 
include "module.header.php";
?>
	<?php 
include "module.menu.php";
?>
	<div class="content">
		<div class="info">
        <div class="left">
		<h1><?php 
echo $campaign->get_name() . $tag->get_name();
?>
 <?php 
echo language('PAGE_stats_agents_title');
?>
</h1>
        </div>
        <div class="clear"></div>
		</div>
		<div class="filter">
		  <ul>
            <?php 
if ($_GET[unique]) {
    ?>
            <a href="personal-daily-<?php 
    echo $_GET[unique];