Was kann ich tun, damit die Variable $zahl als Zahl eingesetzt und mit dem Link an die neue Seite übertragen wird. Im Moment wird $zahl als "$zahl" und nicht als wirkliche Nummer übergeben. Das Problem habe ich wegen des if-Scriptes.
Gunther
Skript:
<?
if (empty($zahl)) {
echo '<p><img src="pics/Pfeil2_z.gif" width="31" height="18" border"0"> Mehr Projekte';
echo '<a href="projects2.php?zahl="$zahl"+1"><img src="pics/Pfeil_v.gif" width="34" height="18" border="0"></a>';
}
elseif ($zahl > 0) {
echo '<p><a href="projects2.php?zahl="$zahl"-1"><img src="pics/Pfeil_z.gif" width="31" height="18" border"0"></a> Mehr Projekte';
echo '<a href="projects2.php?zahl="$zahl"+1"><img src="pics/Pfeil_v.gif" width="34" height="18" border="0"></a>';
}
elseif ($zahl > $number) {
echo '<p><a href="projects2.php?zahl="$zahl"-1"><img src="pics/Pfeil_z.gif" width="31" height="18" border"0"></a> Mehr Projekte';
echo '<img src="pics/Pfeil2_v.gif" width="34" height="18" border="0">';
}
else {
}
?>
Gunther
Skript:
<?
if (empty($zahl)) {
echo '<p><img src="pics/Pfeil2_z.gif" width="31" height="18" border"0"> Mehr Projekte';
echo '<a href="projects2.php?zahl="$zahl"+1"><img src="pics/Pfeil_v.gif" width="34" height="18" border="0"></a>';
}
elseif ($zahl > 0) {
echo '<p><a href="projects2.php?zahl="$zahl"-1"><img src="pics/Pfeil_z.gif" width="31" height="18" border"0"></a> Mehr Projekte';
echo '<a href="projects2.php?zahl="$zahl"+1"><img src="pics/Pfeil_v.gif" width="34" height="18" border="0"></a>';
}
elseif ($zahl > $number) {
echo '<p><a href="projects2.php?zahl="$zahl"-1"><img src="pics/Pfeil_z.gif" width="31" height="18" border"0"></a> Mehr Projekte';
echo '<img src="pics/Pfeil2_v.gif" width="34" height="18" border="0">';
}
else {
}
?>
Kommentar