Hallo 1unitedpower,
eine Frage zur Ausgabe, ich kann scheinbar mein Ausgabe so
echo "<form method=\"post\" action=\"\">
<input type=\"radio\" name=\"preis\" id=\"000001-preis1\" value=\"14.64\">
<label for=\"000001-preis1\">$preis1 €</label>
<input type=\"radio\" name=\"preis\" id=\"000001-preis2\" value=\"10.99\">
<label for=\"000001-preis2\">$preis2 €</label>
<input type=\"radio\" name=\"preis\" id=\"000001-preis3\" value=\"11.64\">
<label for=\"000001-preis3\">".$preis3." €</label>
<input type=\"hidden\" value=\"000001\" name=\"artikel_id\">
<input type=\"submit\" name=\"wk\" value=\"In den Warenkorb\">
</form>";
oder auch so ausgeben lassen:
echo "<form method=\"post\" action=\"\">
<input type=\"radio\" name=\"preis\" id=\"000001-preis1\" value=\"14.64\">
<label for=\"000001-preis1\">$preis1 €</label>
<input type=\"radio\" name=\"preis\" id=\"000001-preis2\" value=\"10.99\">
<label for=\"000001-preis2\">$preis2 €</label>
<input type=\"radio\" name=\"preis\" id=\"000001-preis3\" value=\"11.64\">
<label for=\"000001-preis3\">$preis3 €</label>
<input type=\"hidden\" value=\"000001\" name=\"artikel_id\">
<input type=\"submit\" name=\"wk\" value=\"In den Warenkorb\">
</form>";
Was ist denn nun besser? Es kommt mir auf diese Schreibweise an
<label for=\"000001-preis3\">".$preis3." €</label>
<label for=\"000001-preis3\">$preis3 €</label>
Beide Varianten scheinen richtig zu funktionieren.