Break.
#1

Hi,

Код:
while( mysql_fetch_row_format( savingstring ) )
	{
How i can break this while?
Reply
#2

1. For your own sake use threaded queries
2.
pawn Код:
while( mysql_fetch_row_format( savingstring ) )
{
    if(IJustWantToContinue) continue;
    if(IJustWantToBreak) break;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)