L lindanancy New member Registered Joined Jan 22, 2013 Messages 4 Points 0 Feb 1, 2013 #1 how many ways we can retrieve data in the result set of MYSQL using PHP?
Marc0 Well-known member Registered Joined Jun 6, 2012 Messages 890 Points 28 Feb 1, 2013 #2 lindanancy said: how many ways we can retrieve data in the result set of MYSQL using PHP? Click to expand... Hi, I think that we have more than 2 ways to retieve data using PHP using mysql_fetch_array or mysql_fetch_assoc. using Php array to fetch database from mysql. can you give some good ideas than me
lindanancy said: how many ways we can retrieve data in the result set of MYSQL using PHP? Click to expand... Hi, I think that we have more than 2 ways to retieve data using PHP using mysql_fetch_array or mysql_fetch_assoc. using Php array to fetch database from mysql. can you give some good ideas than me
Inquestor Well-known member Registered Joined Feb 1, 2013 Messages 215 Points 0 Feb 1, 2013 #3 Hey, The mysql_... extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. You should use prepared statements to avoid SQL Injections. See php.net mysqli for more information
Hey, The mysql_... extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. You should use prepared statements to avoid SQL Injections. See php.net mysqli for more information