Variabele optellen in href
echo "<div><a class=\"href_class1\" href=\"index.php?id=$get_id&tab=m1&var1=$var1&var2='$var1+$totaal'\"><img src=\"img/button.png\" title=\"Ga\" width=\"16\" height=\"16\" /></a></div>";
Gewijzigd op 20/01/2011 20:25:33 door Jordy nvt
Als je op een link klikt dat een variabele dan word opgeteld(kliklinks)?
echo "<div><a class=\"href_class1\" href=\"index.php?id=$get_id&tab=m1&var1=4&var2=74\"><img src=\"img/button.png\" title=\"Ga\" width=\"16\" height=\"16\" /></a></div>";
Dus hoe moet ik met die ' en " werken?
Code (php)
1
2
3
2
3
<?php
echo '<div><a class="href_class1" href="index.php?id=' . $get_id . '&tab=m1&var1=' . $var1 . '&var2=' . ($var1+$totaal) . '"><img src="img/button.png" title="Ga" width="16" height="16" /></a></div>';
?>
echo '<div><a class="href_class1" href="index.php?id=' . $get_id . '&tab=m1&var1=' . $var1 . '&var2=' . ($var1+$totaal) . '"><img src="img/button.png" title="Ga" width="16" height="16" /></a></div>';
?>
Code (php)
1
2
3
2
3
<?php
echo '<div><a class="href_class1" href="index.php?id='.$get_id.'&tab=m1&var1='.$var1.'&var2='.$var1+$totaal.'"><img src="img/button.png" title="Ga" width="16" height="16" /></a></div>';
?>
echo '<div><a class="href_class1" href="index.php?id='.$get_id.'&tab=m1&var1='.$var1.'&var2='.$var1+$totaal.'"><img src="img/button.png" title="Ga" width="16" height="16" /></a></div>';
?>
Gewijzigd op 21/01/2011 14:43:19 door Jordy nvt
ipv & & gebruiken?
Werkt nog steeds niet:-(
Neem mijn regel een letterlijk over.
Code (php)
1
2
3
4
2
3
4
<?php
$result = $var1 + $totaal;
echo '<div><a class="href_class1" href="index.php?id='.$get_id.'&tab=m1&var1='.$var1.'&var2='.$result.'"><img src="img/button.png" title="Ga" width="16" height="16" /></a></div>';
?>
$result = $var1 + $totaal;
echo '<div><a class="href_class1" href="index.php?id='.$get_id.'&tab=m1&var1='.$var1.'&var2='.$result.'"><img src="img/button.png" title="Ga" width="16" height="16" /></a></div>';
?>
Gewijzigd op 21/01/2011 14:57:02 door Ozzie PHP
Ja, zo werkt het wel, maar ik snap niet waarom die variabelen niet gewoon kunnen optellen...
Jordy nvt:
maar ik snap niet waarom die variabelen niet gewoon kunnen optellen...
En ik snap niet waarom jij de code van SanThe niet letterlijk kan overnemen. Die werkt namelijk gewoon.