Welcome, Guest.
Login
|
Register
Username:
Password:
Remember me:
fMySQL - Helpful PHP function
Please log in to post.
Watch thread
Unwatch thread
Started by
Hybrilynx
27 Apr 2014 22:51
By
Hybrilynx
(
127
)
On 27 Apr 2014 22:53
function fMySQL( $DB, $Query ){
$A = array();
$B = $DB -> query( $Query );
while( $C = mysqli_fetch_array( $B, MYSQLI_ASSOC ) ){
array_push( $A, $C );
}
return $A;
}
That's it. And for using it, use something like this:
print_r( fMySQL( 'user', 'SELECT * FROM `account` WHERE 1 ORDER BY `id` DESC' ) );
By
Limxzero
(
5329
)
On 28 Apr 2014 01:47
function mySQLstinks(){...}
Catch my drift.
By
Hybrilynx
(
127
)
On 28 Apr 2014 19:13
Ohhh yeah I forgot that people used PDO. But for anything else unrelated to anonymous user input, this function is great, short and simple.
Nintendo 3DS is ™ Nintendo Co. Ltd. This website is ©2009-2025 HullBreach Studios. All rights reserved.