RE: [PHP] Where's the error?

2002-05-14 Thread David Freeman
Thanks heaps for your help I really appreciate it. I have made the changes you suggested but now I only get a blank screen. These are more general hints on ways to solve the problem yourself. function getmydate($hit) { $single = explode ( ,$hit); return $single[3].$single[4];

Re: [PHP] Where's the error?

2002-05-13 Thread Lars Torben Wilson
On Mon, 2002-05-13 at 19:32, Josh Edwards wrote: This is meant to grab a date out of a log file from the first line of the array but I'm getting a parse error on line 13. Any ideas? function getdate($hit) There is already a PHP function named 'getdate()'; you'll need another name here.

Re: [PHP] Where's the error?

2002-05-13 Thread Josh Edwards
Thanks heaps for your help I really appreciate it. I have made the changes you suggested but now I only get a blank screen. function getmydate($hit) { $single = explode ( ,$hit); return $single[3].$single[4]; } $filename = (combined_log); //fopen ($filename, r); $fcontents =

Re: [PHP] Where's the error?

2002-05-13 Thread Lars Torben Wilson
On Mon, 2002-05-13 at 20:01, Josh Edwards wrote: Thanks heaps for your help I really appreciate it. I have made the changes you suggested but now I only get a blank screen. function getmydate($hit) { $single = explode ( ,$hit); return $single[3].$single[4]; } $filename =

RE: [PHP] Where's the error?

2002-05-13 Thread Martin Towell
$line = $fcontents[i]; should read $line = $fcontents[$i]; -Original Message- From: Josh Edwards [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 1:02 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Where's the error? Thanks heaps for your help I really appreciate it. I have made

Re: [PHP] Where's the error?

2002-05-13 Thread Josh Edwards
I put 'print_r($fcontents);' in and it outputted the array of my log file so I'm not sure what's wrong. Here's a section of the log file. I'm trying to get the date of the first access and the last access. 203.29.154.13 - - [08/May/2002:21:21:22 +1000] GET /A1.html HTTP/1.1 304 - -

Re: [PHP] Where's the error?

2002-05-13 Thread Josh Edwards
Fixed !!! It should be $line = $fcontents[$i]; not $line = $fcontents[i]; Would you know the syntax to get the the last date? ie $lastdate = getmydate($line[(count($line))]); echo $lastdate; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Where's the error?

2002-05-13 Thread Martin Towell
that'll prob. be: $lastdate = getmydate($fcontents[count($fcontents)-1]); remember that array indexes start at 0, hence the -1 bit -Original Message- From: Josh Edwards [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 1:33 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Where's