Why is there an endless loop between the two database reading methods?

Source: Internet
Author: User
Why is there an endless loop between the two database reading methods? Normal syntax:
 ';} Else {echo 'lishuwrong'. mysql_error ().'
';} $ B = mysql_query ("select * from shoping") or die ('lishudie '. mysql_error (); // Create record set $ assoc = mysql_fetch_assoc ($ B); while ($ assoc) {echo $ assoc ['item _ id']. '----------'. $ assoc ['name'].'
'; $ Assoc = mysql_fetch_assoc ($ B);} mysql_close ($ select);?>

After I rewrite:
 ';} Else {echo 'lishuwrong'. mysql_error ().'
';} // $ B = or die ('lishudie '. mysql_error (); // Create record set $ assoc = mysql_fetch_assoc (mysql_query ("select * from shoping"); while ($ assoc) {echo $ assoc ['item _ id']. '----------'. $ assoc ['name'].'
'; $ Assoc = mysql_fetch_assoc (mysql_query ("select * from shoping");} mysql_close ($ select);?>


Reply to discussion (solution)

$ Assoc = mysql_fetch_assoc (mysql_query ("select * from shoping "));
While ($ assoc)
{
Echo $ assoc ['item _ id']. '----------'. $ assoc ['name'].'
';
$ Assoc = mysql_fetch_assoc (mysql_query ("select * from shoping "));
}
You get the first record of the query result every time.
When will this $ assoc become logical false?

Although programming can have a lot of flexibility, but the basicTheoryIt cannot be changed.

$ Assoc = mysql_fetch_assoc (mysql_query ("select * from shoping "));
While ($ assoc)
{
Echo $ assoc ['item _ id']. '----------'. $ assoc ['name'].'
';
$ Assoc = mysql_fetch_assoc (mysql_query ("select * from shoping "));
}
You get the first record of the query result every time.
When will this $ assoc become logical false?

Although programming can have a lot of flexibility, but the basicTheoryIt cannot be changed.


I seem to understand it a little. I just started learning PHP. thank you! Join us!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.