Smith needs to generate 10 unique bill ids for each of his customers starting from B101. Help him to identify the missing lines of the code to complete the bill id generation.
<?php
$total_customer=10;
$i=0;
$start_value=101;
while ( ---------- ) # LINE1
{
echo "Bill ID:B".$start_value;
---------------- ; #LINE2
$i+=1;
}
?>
LINE 1: $i < $total_customer
LINE 2: $start_value+=$i;
LINE 1: $i < $total_customer
LINE 2: $start_value +=1;
LINE 1: $i <= $total_customer
LINE 2: $start_value +=1;
LINE 1: $i <= $total_customer
LINE 2: $start_value +=$i;
To get all Infosys Certified PHP Associate Exam questions Join Telegram Group https://rebrand.ly/lex-telegram-236dee