PHP 8.5.0 Alpha 1 available for testing

Voting

: two minus zero?
(Example: nine)

The Note You're Voting On

toolofthesystem at gmail dot com
18 years ago
This function comes useful sometimes when trying to list information returned from MySQL:

function print_sql($query,$printf){
$sql_sql = mysql_query($query);
while($sql = mysql_fetch_row($sql_sql)){
vprintf($printf,$sql);
}
}

Unfortunately, this seems to sneak its way past output buffering when I tried creating an argument to allow it to be contained in a returned string... either that or I didn't do it right.

<< Back to user notes page

To Top