0
can i use other method in place of while($row=mysql_fetch _array($run)) to extract data from database
7 ответов
+ 2
he made another question and said can i use another loop
and with method maybe he meant another way, he looks like a beginner.
+ 1
why do you want to do that
+ 1
he doesn't want to use while loop.
+ 1
a while loop is not a method...
mysql_fetch_array() is though... pretty sure he said method
so what makes you think that @Uran ?
0
you can use mysqli instead
$quey = "dbquery";
$result = mysqli_query(connectionvar,$query);
while($row = mysqli_fetch_assoc($result)) {
code to run for $row[column];
}
0
Thankyou sir for saying . I was doing mistake.
0
Sir. You are right, I Am beginner.