Code :
- <?php
- require 'fonctions.php';
- include('aff_image2.php');
- $lang = $_GET["lang"];
-
- if ($lang == "fr" )
- {
- $titre= "Jérémie Parmentier > portfolio numérique";
- $galerie1 = " sites internet";
- $galerie2 = " Animations Flash";
- }
- else{
- $titre= "Jérémie Parmentier > photo + graphic portfolio";
- $galerie1 = " Websites";
- $galerie2 = " Flash";
- }
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html><head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <title><?php echo $titre ?></title>
- <link href="/style5.css" rel="stylesheet" type="text/css">
- <script type="text/javascript">
- <!--
- function MM_changeProp(objId,x,theProp,theValue) { //v9.0
- var obj = null; with (document){ if (getElementById)
- obj = getElementById(objId); }
- if (obj){
- if (theValue == true || theValue == false)
- eval("obj.style."+theProp+"="+theValue);
- else eval("obj.style."+theProp+"='"+theValue+"'" );
- }
- }
- function localFilename(url) // removing path
- {
- var x = url.lastIndexOf("/" );
- url = url.slice(x + 1);
- return url;
- }
- function affinfos(element,id,language) {
- document.getElementById('bv').src ='/img/spinner.gif';
- var name = element.src;
- name = localFilename(name);
- name = name.slice(9); // remove the "thumb-" part avant slice(6)
- name = "/img/" + name; // restore path and add the new "big-" prefix
- // building a string to display the image
- //alert(name);
- document.getElementById('bv').src = name;
-
- if(window.XMLHttpRequest)
- xmlhttp=new XMLHttpRequest();
- else
- xmlhttp=new ActiveXObject("Microsoft.XMLHTTP" );
- url = "test-ajax2.php?id="+ id + "&tablelang="+language;
- xmlhttp.open("GET",url,false);
- xmlhttp.send(null);
- document.getElementById('info').innerHTML = xmlhttp.responseText;
- }
- //-->
- </script>
- </head><body onload="MM_changeProp('fondWeb','','backgroundColor','#ff9933','DIV')">
-
- <div id="conteneur">
- <img src="/img/imagette_web_site.gif" alt="imagette site maison à vendre" title="site maison à vendre" class="imagette2" width="48" height="48" onmouseover="javascript:affinfos(this,1,'infos-<?php echo $_GET["lang"]; ?>')">
- <?php
-
- echo "<div id='left'><div id='sousrub1'> <img src='/fnc/droite2.gif' alt='' />".$galerie1."</div> "
- ."<div id='sousrub1_img'>";
- if ($_GET['limite1'] == '') $limite1 = 0;
- else $limite1 = $_GET['limite1'];
- $verifLimite= verifLimite($limite1,30,5); // si la limite passée n'est pas valide on la remet à zéro
- if(!$verifLimite) {$limite1 = 0;}
- affiche('web',$lang,'1','9',$limite1);
- echo" <div id='sousrub1'><img src='/fnc/droite2.gif' alt='' />".$galerie2."</div> "
- ."<div id='sousrub1_img'> ";
-
- if ($_GET['limite2'] == '') $limite2 = 0;
- else $limite2 = $_GET['limite2'];
- $verifLimite2= verifLimite($limite2,30,5);
-
- // si la limite passée n'est pas valide on la remet à zéro
- if(!$verifLimite2) {
- $limite2 = 0;
- }
- affiche('web',$lang,'2','10',$limite2);
-
- ?>
- <div id="sousrub3"> <img src="web_fichiers/droite2.gif" alt="Jérémie Parmentier" width="8" height="8"> Infos</div>
- <div id="infos"><p id="info">Site internet pour vente de maison.</p> </div>
- </div><!-- fin div left-->
-
- <div id="content"><img src="img/italiea.gif" alt="image par défaut" id="bv" width="465" height="316"></div><!-- fin div content-->
- <br/><br/>
|