//This is my Main Loop;
for ($x=1; $x <= 500; $x++) {
//Second Loop
foreach($msubLink[0] as $m) {
if ($y >= $DescCnt) { break;
}
}
$y++;
}
Question : How can i put another break on my Main Loop
the condition if my Second Loop already stop or Break. or if the second Loop stop the main loop should also stop .. Thnks