My PHP code generates a myDBR report by echoing a URL to mydbr.
The URL contains parameters using the format
1.
$hostname
.
'/mydbr/report.php?r='
.
$report_procedure_name
.
'&h='
.
$reportHash
.
'&p1='
.
$p1
.
'&p2='
.
$reportSql
.
'&u3='
.
$reportName
;
It seems that when one of the parameters, in my case $reportSql, is very large, then the report fails.
Can you please tell me what is the size limit in bytes for such a parameter?
Thanks.