Hello guys<br>Talking about report generator anyone got using Username too see the report<br>i mean the user can enter his username and password and see his usage?<br>thanks<br><br><div><span class="gmail_quote">On 8/24/06, 
<b class="gmail_sendername">Guy Fraser</b> <<a href="mailto:guy@incentre.net">guy@incentre.net</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Me too.<br><br>I have also built a report generator, into the management system I<br>built.<br><br>I can provide snippets, but not the whole source until I get<br>authorization.<br><br>Here is a little snippet that allows the PHP output to be
<br>automatically opened in a spreadsheet :<br><br>---begin---<br>          // $output contains tab ["\t"] delimited fields<br>          // and linefeed ["\n"] delimited records<br>          $size_in_bytes = strlen($output);
<br><br>          if(strstr($_SERVER['HTTP_USER_AGENT'],'Safari') != false){<br>            // User Agent is Safari = Broken<br>            // Document must be opend and saved with a text editor<br>            // before excel can open it
<br>            header("Content-type: application/vnd.ms-excel");<br>            header("Content-disposition: attachment; filename=report-" .<br>$_SESSION['report'] . "-" . $syear . $smonth . "_" . $eyear . $emonth .
<br>"-" . $gmatch . "_" . $umatch . "-" . date("Y-m-d") . ".txt; size=<br>$size_in_bytes");<br>          } else {<br>            header("Content-type: application/vnd.ms-excel");
<br>            header("Content-disposition: attachment; filename=report-" .<br>$_SESSION['report'] . "-" . $syear . $smonth . "_" . $eyear . $emonth .<br>"-" . $gmatch . "_" . $umatch . "-" . date("Y-m-d") . ".tab; size=
<br>$size_in_bytes");<br>          }<br><br>          echo $output ;<br>---End---<br><br>Note: When this works, the web page does not change since the data<br>is output as the attachment.<br><br><br>On Thu, 2006-08-24 at 11:04 -0600, Scott Miller wrote:
<br>> I've also created a report generator - but mine does not require you to<br>> input the IP address.  It just authenticates the user, asks for the month<br>> they want to display, and if they want a summary report or a detailed
<br>> report.  It is actually an old ICRadius script (written in PHP) that I found<br>> and modified to fit my needs.  I'm willing to share this one as well if<br>> anyone is interested.<br>><br>> Scott<br>
><br>> -----Original Message-----<br>> From: freeradius-users-bounces+srmiller=<a href="mailto:interbel.net@lists.freeradius.org">interbel.net@lists.freeradius.org</a><br>> [mailto:<a href="mailto:freeradius-users-bounces+srmiller=interbel.net@lists.freeradius.org">
freeradius-users-bounces+srmiller=interbel.net@lists.freeradius.org</a>]<br>> On Behalf Of Sean<br>> Sent: Wednesday, August 23, 2006 1:58 PM<br>> To: <a href="mailto:freeradius-users@lists.freeradius.org">freeradius-users@lists.freeradius.org
</a><br>> Subject: Report Generator<br>><br>> Hi,<br>><br>> Ive written a report generator in PHP and HTML that will allow your<br>> clients to generate usage reports from the FreeRadius log files. When<br>
> the user logs in he/she is asked for their IP address and the Month that<br>> they want to display. If anyone wants a copy let me know. If there is<br>> enough interest I'll make it available for public download.
<br>><br>> Regards,<br>><br>> Sean Bracken<br>><br>> <a href="http://swarmhotspots.com">http://swarmhotspots.com</a><br>> -<br>> List info/subscribe/unsubscribe? See<br>> <a href="http://www.freeradius.org/list/users.html">
http://www.freeradius.org/list/users.html</a><br>><br>><br>> -<br>> List info/subscribe/unsubscribe? See <a href="http://www.freeradius.org/list/users.html">http://www.freeradius.org/list/users.html</a><br><br>
<br>-<br>List info/subscribe/unsubscribe? See <a href="http://www.freeradius.org/list/users.html">http://www.freeradius.org/list/users.html</a><br></blockquote></div><br>