Re: [PHP-WIN] php script error

2004-06-17 Thread Dascalu Marius
led. The same problem exists when using a single PHP/HTML file. http://www.example.com/'); ?> HTH Marius -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] More Code

2004-06-12 Thread Dascalu Marius
t-weight: bold; > font-family: Arial, Helvetica, sans-serif; > font-size: x-large; > } >.style7 { >color: #DFC472; >font-weight: bold; >} > Hi have you closed comentary after "}" and before ? with that modification code works on my box :) HTH Marius -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Problem Solved

2002-06-05 Thread Marius Venter
Hi, Thanks to everybody trying to solve the problem! The solution was to set the E_ALL to E_ALL & ~E_NOTICE in the php.ini file!! Regards, MARIUS Marius Venter <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I installed PHP 4.1 on NT 4

[PHP-WIN] Re: notice:undefined variable

2002-06-05 Thread Marius Venter
iring assistance, whatever the definition of the subscriber. Anyway, thanks for the help - it is much appreciated. Regards, Marius . Michael Davey <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > OK - couple of things first: > > a)

[PHP-WIN] Re: notice:undefined variable

2002-06-05 Thread Marius Venter
\php.ini on line 62 Regards, Marius Steve Yates <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > "Michael Davey" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > If you are l

[PHP-WIN] notice:undefined variable

2002-06-03 Thread Marius Venter
ADDRESS () TO CONTINUE Please use your browser's back button to return to the form and try again. User rights are set correctly and PHP's installation went smooth. I also tested PHP and it seems OK. Anys suggestions? Marius Venter -- PHP Windows Mailing List (http://www.ph

[PHP-WIN] A List of months

2001-10-30 Thread Marius
I wanna list the next 12 Month in PHP, that shuld look so: 01-31.Monthname.2001 01-31.Monthname.2001 01-31.Monthname.2001 . How to list them correctly and dynamicly in php?! Thx! -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

[PHP-WIN] Including php in my app

2001-10-30 Thread Marius
I wanna use PHP in my app like the Apache does, so that PHP compiles Web-Pages for my app - Original Message - From: "Svensson, B.A.T. " <[EMAIL PROTECTED]> To: "Marius" <[EMAIL PROTECTED]> Sent: Monday, October 29, 2001 5:19 PM Subject: RE: [PHP-WIN]

[PHP-WIN] How das a POST-Response-Header look?

2001-10-18 Thread Marius
I wanna be able to send an HTTP-Post-Header, but I dont know how to put the Post Variables into it -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL P

[PHP-WIN] Including php in my app

2001-10-18 Thread Marius
I have written an simple WebServer and know I wanna build in PHP support. My first try was to run php with the path to my Script as an Variable and get the result. This method works corectly, but I think that's not a real good way to do that (for example I dontknow how to send Variables to the Scr

Re: [PHP-WIN] JavaScript Help!

2001-03-15 Thread Marius Manolea
=new Date(dt_str); // or new Date(Date.parse(dt_str)); Response.Write(dt_obj.toLocaleString()); bottom line, if you need a date only string use CONVERT(varchar,DATE_FIELD,101) if you need a date time string use CONVERT(varchar,GETDATE(),101)+' '+CONVERT(varchar,GETDATE()

Re: [PHP-WIN] PHP + COM

2001-02-14 Thread Marius
PHP seems to have problems with multiple levels of indirection. Try assigning the object you need to work with to a local variable. e.g. // Assign to temp variable $tempCAT = $pro->CAT; // Do some work $tempCAT->FILTER(XXX); // Copy back to original object $pro->CAT = $tempCAT; B