Passage de parametre
Résolu/Fermé
A voir également:
- Passage de parametre
- Netflix paramètre compte - Guide
- Passage qwerty azerty - Guide
- Paramètre usine pc - Guide
- Parametre windows - Guide
- Changer parametre dns - Guide
3 réponses
Bonsoir,
si tu fais:
si tu fais:
<link ......... <?php echo "debut_url".$ta_variable.".css" ; ?> .......... </link>
Bonsoir, merci de votre réponse, j'ai essayé de faire comme vous dites mais ça ne marche toujours pas
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
<head>
<script type="text/javascript">
function resolution() {
document.location="<?php echo $_SERVER['PHP_SELF']; ?>?width="+screen.width;
}
</script>
<?php $res=$_GET['width']; ?>
<link rel="stylesheet" media="screen" type="text/css" title="style" href= <?php "sources/css/design".$res.".css" ?> />
</head>
avanr j'avais essayé cela mais pareil ça ne marchait pas:
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
<head>
<title> Welcome! </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<script type="text/javascript">
function resolution() {
document.location="<?php echo $_SERVER['PHP_SELF']; ?>?width="+screen.width;
}
</script>
<link rel="stylesheet" media="screen" type="text/css" title="style" href= <?php '"sources/css/design'.$_GET['width'].'.css"'?> />
</head>
--------------------------------------------------------------------------------------------------------------------------------------------------------------------
<head>
<script type="text/javascript">
function resolution() {
document.location="<?php echo $_SERVER['PHP_SELF']; ?>?width="+screen.width;
}
</script>
<?php $res=$_GET['width']; ?>
<link rel="stylesheet" media="screen" type="text/css" title="style" href= <?php "sources/css/design".$res.".css" ?> />
</head>
avanr j'avais essayé cela mais pareil ça ne marchait pas:
-------------------------------------------------------------------------------------------------------------------------------------------------------------------
<head>
<title> Welcome! </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<script type="text/javascript">
function resolution() {
document.location="<?php echo $_SERVER['PHP_SELF']; ?>?width="+screen.width;
}
</script>
<link rel="stylesheet" media="screen" type="text/css" title="style" href= <?php '"sources/css/design'.$_GET['width'].'.css"'?> />
</head>
Oui ça marche en fait j'avais oublier de mettre echo merci...(une confusion, peut être parce que j'apprends 5 langages en même temps)
mais j'ai opter pour une solution sans variable donc:
--------------------------------------------------------------
<link rel="stylesheet" media="screen" type="text/css" title="style" href= <?php echo '"sources/css/design'.$_GET['width'].'.css"'; ?> />
mais j'ai opter pour une solution sans variable donc:
--------------------------------------------------------------
<link rel="stylesheet" media="screen" type="text/css" title="style" href= <?php echo '"sources/css/design'.$_GET['width'].'.css"'; ?> />