bonjour,
g commencé le language php il y a 3 jours et g un petit probleme :
j'essaye de creer un site où g fichier .php dans lequel g 2 div :
-le premiere pour mon menu(menu.php),
-le deuxieme pour le contenu("Basbas.php").
j'ai donc mis deux include (un dans chaque div)qui inclu chacun un fichier .php jusque la ca marche.
le probleme c que dans mon fichier "Basbas.php" j'ai un lien qui me permet d'ouvrir une fenetre(en javascript),
donc avec l'include cette fenetre souvre mais elle n'inscrit pas le contenu.
alors que si je test le fichier basbas.php ca marche.
et je comprends pas pk?
je mets un peu de code se sera pe etre plu clair :
//code Basbas.php
g commencé le language php il y a 3 jours et g un petit probleme :
j'essaye de creer un site où g fichier .php dans lequel g 2 div :
-le premiere pour mon menu(menu.php),
-le deuxieme pour le contenu("Basbas.php").
j'ai donc mis deux include (un dans chaque div)qui inclu chacun un fichier .php jusque la ca marche.
le probleme c que dans mon fichier "Basbas.php" j'ai un lien qui me permet d'ouvrir une fenetre(en javascript),
donc avec l'include cette fenetre souvre mais elle n'inscrit pas le contenu.
alors que si je test le fichier basbas.php ca marche.
et je comprends pas pk?
je mets un peu de code se sera pe etre plu clair :
//code Basbas.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
var popUpWin=0;
function MM_openDetail(leCode) { //v2.0
var top=(screen.height-(750))/2;
var left=(screen.width-(675))/2;
<!--var lefic = "detail.php?source="+theURL+"&ref="+ref;
var lefic = "DetailOperation.php?leParam="+leCode;
if(popUpWin)
{
if(!popUpWin.closed) popUpWin.close();
}
<!--popUpWin = open(lefic,'popUpWin','top='+top+',left='+left+',width='+larg+',height='+haut+',resizable=yes');
popUpWin = open(lefic,'popUpWin','top='+top+',left='+left+',width='+675+',height='+750+',resizable=yes');
}
//-->
</script>
<link href="mesStyles.css" rel="stylesheet" type="text/css">
<link href="../../menuCommun.css" rel="stylesheet" type="text/css">
<title>Vehicules en operations</title></head>
<body>
<?php
include_once("mesConstantes.inc.php");
include_once("mesFonctions.inc.php");
$sqlconnect=mssql_connect($SERVER, $USERNAME, $PASSWORD);
$sqldb=mssql_select_db($DATABASE,$sqlconnect);
if (isset($_GET['leParam'])) {
$leParam = (get_magic_quotes_gpc()) ? $_GET['leParam'] : addslashes($_GET['leParam']);
}
$laRequeteSQL= "select distinct Code_oper,Etat,oc.Operation as lOperation,ocv.operation,ocv.ir as IR, ocv.type_vehic as TYPEV, ocv.Centre as leCentre";
$laRequeteSQL.=" , mm.disponibilite,dispo.libelle as ETAT";
$laRequeteSQL.= " from oc left join oc_Vehicules ocv on oc.operation=ocv.operation ";
$laRequeteSQL.= " inner join Moyens_Materiels mm on ocv.IR=mm.IR and ocv.operation=mm.operation ";
$laRequeteSQL.= " inner join [PARAM_Disponibilite] dispo on mm.disponibilite=dispo.id_disponibilite ";
$laRequeteSQL.= " where code_oper=1 and mm.disponibilite <> 10 and ocv.operation <> '' ";
$laRequeteSQL.= " order by oc.Operation DESC, IR DESC ";
$leResultat= mssql_query($laRequeteSQL);
if (mssql_num_rows ($leResultat) > 0) {
?>
<table> <!-- align="left" width="915" border="0" -->
<tr class="Tableau_EnteteHoriz"> <!-- bgcolor="#CCCCCC" class="Style1" -->
<th colspan = "2">IR</th>
<th class="TableauMoyCol" >Type</th> <!-- width="77" -->
<th class="TableauPetiteCol" >Centre</th> <!-- width="55" -->
<th class="TableauGrdeCol" >Operation</th> <!-- width="164" -->
<th class="TableauGrdeCol" >Etat</th> <!-- width="513" -->
</tr>
<?php
while ($row=mssql_fetch_array($leResultat)){
?>
<tr class="Style1" >
<td class="Colonne1" bgcolor="<?php echo couleurDispo($row['disponibilite']); ?>"> </td> <!-- width="16" -->
<td class="Colonne2" ><?php echo $row['IR']; ?></td> <!-- width="64" -->
<td><?php echo $row['TYPEV']; ?></td>
<td><?php echo $row['leCentre']; ?></td>
<td><a href="Javascript:MM_openDetail(' <?php echo trim($row['lOperation']) ?> ')">
<?php
echo $row['lOperation'];
?>
</a></td>
<td><?php echo $row['ETAT']; ?></td>
</tr>
<?php
}
?>
</table>
<?php
}
mssql_close($sqlconnect);
?>
<p> </p>
</body>
</html>