Hallo,
ist etwas in der Art möglich. Hab schon "break" und "continue" nachgelesen aber sieht nicht danach aus als würde das passen.
Tabelle:
id | feld1 | feld2
------------------
1 | irgend| etwas
------------------
2 | blabla| bla
------------------
Code:
do
{
echo $row['feld1'];
unterbrechung(echo "hallo");
echo $row['feld2'];
}
while($row = mysql_fetch_assoc($result));
Ausgabe:
irgend
hallo
etwas
blabla
hallo
bla
lg, jens