6
What size of a query considerable great? For, I need to make a function
to send query for the server but I cannot exceed the limit not to crash the server:
public function sqlExecute($sql_code) {
if ($sql_code != "" && strlen($sql_code) < 1e6) { // O TAMANHO DA QUERY AQUI
echo '1';
}
else {
echo '2';
}
}
SSH, I can’t pass the memory and I can’t pass the time.
– misakie