?> </a> </li> </ul> </header> <div class="panel-body"> <div class="tab-content"> <div id="home-2" class="tab-pane "> Cet encadré s'affiche automatiquement lorsqu'une nouvelle version est disponible. Vous retrouvez ici les changements introduits par cette nouvelle version. </div> <div id="about-2" class="tab-pane active"><?php $MAJ_INFO_URL = 'http://services.piwowarczyk.fr/cms_update/version-' . $new_version . '.txt'; $INFO01 = getinfos($MAJ_INFO_URL); if ($INFO01[http_code] == 200) { $fichier1 = file($MAJ_INFO_URL); // Nom du fichier à afficher, son adresse de localisation $total1 = count($fichier1); // Nombre total des lignes du fichier for ($i = 0; $i < $total1; $i++) { // Départ de la boucle echo $fichier1[$i]; echo '<br/>'; } // Fin de la boucle } else { echo 'Attention, aucun changelog détécté, mieux vaut éviter cette mise à jour.'; } ?>
along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. or check http://www.gnu.org/copyleft/gpl.html */ $id = $HTTP_GET_VARS['id']; $table = $HTTP_GET_VARS['table']; include "inc/parseconf.php"; include "inc/lib.php"; if (!is_file('etc/localis.conf')) { die("etc/localis.conf not found<br>You need to copy etc/localis.conf.dist and modify it to fit your needs."); } $conf = parseconf('etc/localis.conf'); $conn = sig_connect(); if ($id and $table) { $user = getinfos($table, $id); } echo inc("head"); if (!$table) { echo "no table selected. please try again, tenderfoot."; } echo "<table class=dashed><tr><td><table border=0>"; if (is_array($user)) { next($user); echo "<tr><td colspan=2><div class=localis>{$table}</div></td></tR>"; while (list($k, $v) = each($user)) { echo "<tr><td><div class=foot>{$k}</div></td><td><div class=menu>{$v}</div></td></tR>"; next($user); } } else { echo "<tr><td><div class=foot>id {$id} in table {$table} ? pff</div></td></tR>";