Hallo Community,
ich sitze jetzt schon 2 Stunden an diesem Problem und komme nich weiter -_-
Vll ist einer von euch so nett und hilft mir mein Problem zu lösen...
Ich weiss nicht ob dass hier erlaubt ist einfach den code reinzuposten..
falls es ein Vergehen ist bitte ich um Sorry
Es ist ein php dokument und 2 css .. im php dokument ist eine selectbox wo man zwischen den 2 css dateien wechseln kann...
ZitatAlles anzeigen<?php
$link = $_GET['style'];
if ($link == Yellow)
{
echo "<link rel='stylesheet' type='text/css' href='red.css'>";
}
else
{
echo "<link rel='stylesheet' type='text/css' href='yellow.css'>";
}
echo"
<html>
<head>";echo "
<title>Beispiel Dunic</title>";echo "
<script type='text/javascript'>
<!--
function send()
{
document.formular.submit();
}
//-->
</script></head>";
echo "<body>";
echo "
<div align='center'>
<h1>Sammelbeispiel</h1>
</div>
";
echo "
<div id='main_menu'>
<form name='formular' method='get' action='$PHP_SELF'>
<p>
<br>
Choose your style:
<br>
<select name='style' size='1' >
<option name='style2'>YELLOW</option>
<option name='style3'>RED</option>
</select>
<br>
<input type='button' value='GO!' name='submity' onclick='send()'>
<br/>
</p>
</form>
</div>";
echo "<div class='inhalt'>";
echo "<p><img src='1.jpg' width='200' height='200'></p>";
echo "
ausgewaehltes style:<br><b>
";if ($_GET['style'] != "")
echo $_GET['style'];
echo "</b></p>";
echo "</div>";echo "</body>";
echo "</html>";?>
css1:
ZitatAlles anzeigenbody
{
background-color: red;
}#main_menu
{
background-color: red;
float: left; width: 10em; height: 22em;
margin: 0; padding: 0;
border: 1px dashed silver;
text-align: center;
}.inhalt {
margin-left: 10em;
padding: 0 1em;
border: 1px solid silver;
}p
{
font-family: "Arial";
font-size: 20px;
}
css2
ZitatAlles anzeigenbody
{
background-color: yellow;
}#main_menu
{
background-color: yellow;
float: left; width: 10em; height: 22em;
margin: 0; padding: 0;
dashed silver;
text-align: center;
position: static;
}.inhalt {
margin-left: 10em;
padding: 23 ;
border: 55px solid black;
}p
{
font-family: "Arial";
font-size: 40px;
}