Re: [PHP] print_r output to a file

2002-11-07 Thread Kerry Kobashi
ahahahaha... i plead insanity "Ernest E Vogelsinger" <[EMAIL PROTECTED]> wrote in message news:5.1.1.6.2.20021107115742.02c2a228@;mail.vogelsinger.at... > At 11:12 07.11.2002, Kerry Kobashi said: > [snip] > >Is there a way to s

[PHP] print_r output to a file

2002-11-07 Thread Kerry Kobashi
Is there a way to send print_r output to a file? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Calendar script - help

2002-11-05 Thread Kerry Kobashi
function FirstDayofMonth($month, $year) { // 0 - Sunday 6 - Saturday return(date("w", mktime(0,0,0,$month,1,$year))); } function DaysInMonth($month, $year) { return(date("t", mkti

[PHP] Re: Require_once problem

2002-11-01 Thread Kerry Kobashi
The problem is that under Windows, case sensitivity is important on require_once require_once("DB.php") is different than require_once("db.php"); Arh! I hate you Windows. "Kerry Kobashi" <[EMAIL PROTECTED]> wrote in message news:20021101073558.158

[PHP] Require_once problem

2002-10-31 Thread Kerry Kobashi
Whats the difference between require_once and include_once? I been running into a problem, perhaps someone can help. I require_once in a Pear database extension. Inside that pear database extension is a require_once("pear.php") and a require_once("db.php") This file, Thomas Voxs' DbPage.php file