how can we call data from SQLYOG through for loop?? plz explane i can't understand ..how can we do this???
call data from SQLYOG through for loop
Well for one, you can't "call data from SQLYOG" because SQLYOG is just a monitoring/management application that interfaces with the MySQL RDBMS, thus SQLYOG has no "data" that you could "call."
So it seems what you should really be asking is how to get data from MySQL. My answer to that would be to use an extension like [man]MySQLi[/man] or [man]PDO[/man] to query the MySQL server and retrieve the results.