Re: [PHP-WIN] include_once support

2002-03-02 Thread Rasmus Lerdorf
Sure On Sun, 3 Mar 2002, crizz wrote: > Is php/4.1.1 supports include_once? > > > > -- > PHP Windows Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] include_once support

2002-03-02 Thread crizz
Is php/4.1.1 supports include_once? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] cannot write to mySQL database

2002-03-02 Thread alain samoun
I think that I remember that you can set the grant tables to user, host and db, as I said, read the Mysql doc, a book that I found helpful when I started was MySQL by Paul Dubois. Bye now, I have to go to movie with my girlfriend ;) A+ Alain -Original Message- From: pilotdave [mailto:[EM

Re: [PHP-WIN] cannot write to mySQL database

2002-03-02 Thread pilotdave
I don't think that's it. Here's more info if it helps... I can input data from the mysql command line, just not through web pages. I have tried a number of different scripts and they all work to view data from the database, but none seem to be able to send data back to the database. I get no e

RE: [PHP-WIN] cannot write to mySQL database

2002-03-02 Thread alain samoun
You probably have Mysql set as 'Read Only' Look at the doc. A+ Alain -Original Message- From: pilotdave [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 02, 2002 5:06 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] cannot write to mySQL database I am just setting up my first php/mySQL/Apac

RE: [PHP-WIN] Warning: Undefined variable

2002-03-02 Thread alain samoun
You should go back to php.ini and reverse your error setting to where it was. The lines that report an error can be individually preceded with the "@" character, it will then cut the error reporting for these lines. A+ Alain -Original Message- From: crizz [mailto:[EMAIL PROTECTED]] Sent:

[PHP-WIN] cannot write to mySQL database

2002-03-02 Thread pilotdave
I am just setting up my first php/mySQL/Apache website running on a win98 machine. I got it working so it can read data from the database, however it seems to be unable to write to the database. I can send queries to it. I am getting the feeling that its a problem with write permission somehow.

Re: [PHP-WIN] Warning: Undefined variable

2002-03-02 Thread crizz
No, now it's ok, my scripts works . It doesn't show any Warnings, but the bad is that it will probably, won't show any error when exist, right. So, I'd like a good value for error_reporting, show I'll know my mistake without having all silly wanrings destroying the look of the page. Thanks for yo

RE: [PHP-WIN] Warning: Undefined variable

2002-03-02 Thread alain samoun
Crizz: Obviously you don't want to do that at this point - No error reporting for a novice - can be challenging... Show us your script and we may be able to help. (Sorry I did not see your previous post(s)...) A+ Alain -Original Message- From: crizz [mailto:[EMAIL PROTECTED]] Sent: Satur

php-windows Digest 3 Mar 2002 03:32:29 -0000 Issue 1026

2002-03-02 Thread php-windows-digest-help
php-windows Digest 3 Mar 2002 03:32:29 - Issue 1026 Topics (messages 12399 through 12413): Re: error query 12399 by: Devon Knowles Errors when building in .NET 12400 by: Devon Knowles Parse error?! 12401 by: Aleksandar Skodric 12402 by: Devon Knowles

Re: [PHP-WIN] Warning: Undefined variable

2002-03-02 Thread crizz
Ok, I changed error_reporting to "no". But now I take no notice about errors at all. Any convinience mode for a novice? "Dl Neil" <[EMAIL PROTECTED]> wrote in message 121301c1c250$9afa6d40$c200a8c0@jrbrown...">news:121301c1c250$9afa6d40$c200a8c0@jrbrown...; > crizz, > > > I'm really newbye in PH

Re: [PHP-WIN] Warning: Undefined variable

2002-03-02 Thread DL Neil
crizz, > I'm really newbye in PHP and just installed php on my IIS on my XP. All > sample scripts I tried returns me error messages about "Warning: Undefined > variable" > It's probably something with the configuration, right? You got it! Check out php.ini (in Windows folder). There is a load o

RE: [PHP-WIN] Dumb Question

2002-03-02 Thread Shrock, Court
Worry not, the only dumb question is the one that is not asked [after you have searched for an answer yourself].if you are running php on windows (which I assume you are because you sent it to the windows list), you do not need to worry about the vulnerability because it only affects some sola

RE: [PHP-WIN] Re: Parse error?!

2002-03-02 Thread Shrock, Court
I see a closing double-quote, but I do not see a semicolon after that double-quote on the last line you included: provider-authenticatie...: static-password" should it be: provider-authenticatie...: static-password"; Can't really see anything else, but I have had some misleading error

RE: [PHP-WIN] PHP Troubles

2002-03-02 Thread Shrock, Court
The most likely reason it was "locking up" was that php.exe was expecting input from STDIN since you did not specify a filename when you started it. In the future, try pressing CTRL-Z, CTRL-D, or CTRL-C (I can't remember which one it uses right now) to get it to terminate. -Original Message--

RE: [PHP-WIN] PHP Troubles

2002-03-02 Thread alain samoun
To start, put your PHP testsocket file in your C:\php Second: Open an MSDOS window from Start button Third: At prompt CD to c:\php Last: type "PHP testsocket.php" and enter A+ Alain -Original Message- From: R0bin [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 02, 2002 12:21 PM To: [EMAI

[PHP-WIN] PHP Troubles

2002-03-02 Thread R0bin
Hello, on a tutorial i have for socket programming in php, it says "run this script in the console" i am not knowing what this means, and if i can do it in windows, i only have Windows ME and Windows XP and when i run C:\php\php.exe in the ms dos window, command.com locks up, and i have to end it

RE: [PHP-WIN] any comment?

2002-03-02 Thread alain samoun
+1 Court ;) First, they ignore you, then they laugh at you, then they fight you, then we win! [Gandhi] A+ Alain -Original Message- From: Shrock, Court [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 11:52 PM To: 'John Meyer '; '[EMAIL PROTECTED] ' Subject: RE: [PHP-WIN] any comme

[PHP-WIN] Warning: Undefined variable

2002-03-02 Thread crizz
I'm really newbye in PHP and just installed php on my IIS on my XP. All sample scripts I tried returns me error messages about "Warning: Undefined variable" It's probably something with the configuration, right? What can i do about it ? thanks crizz -- PHP Windows Mailing List (http://www.ph

[PHP-WIN] Warning: Undefined variable

2002-03-02 Thread crizz
I'm really newbye in PHP and just installed php on my IIS on my XP. All sample scripts I tried returns me error messages about "Warning: Undefined variable" It's probably something with the configuration, right? What can i do about it ? thanks crizz -- PHP Windows Mailing List (http://www.p

Re: [PHP-WIN] Re: Parse error?!

2002-03-02 Thread Aleksandar Skodric
Sure...   this is it:   if ($bvorm == "anders" && $bedrijfsvorm_anders == "leeg"){    echo "Opgegeven bedrijfsvorm is niet juist. Wilt u dit controleren en opnieuw aanvragen.";    exit;}   $to  = "[EMAIL PROTECTED]" . ", " ;  $

[PHP-WIN] Re: Parse error?!

2002-03-02 Thread Devon Knowles
Can you post the surrounding code for us? Sometimes the line number won't literally match the line number in the file. - Devon Knowles

[PHP-WIN] Parse error?!

2002-03-02 Thread Aleksandar Skodric
Hi all...   This is my first posting, so if question has been already asked (and answerd) my apologise : )   OK, here it goes. I had Apache on Win XP. It all worked fine till some time ago... I decided to try some other web servers and now I'm

[PHP-WIN] Errors when building in .NET

2002-03-02 Thread Devon Knowles
I am getting +100 errors when I try to build PHP in .NET, specifically when compiling the following files: d:\program files\microsoft visual studio .net\vc7\platformsdk\include\winnt.h d:\program files\microsoft visual studio .net\vc7\platformsdk\include\winbase.h d:\program files\microsoft visua

[PHP-WIN] Re: error query

2002-03-02 Thread Devon Knowles
Try building the SQL statement outside of the query. I've usually found that it fixes the problem. $sql = "SELECT ID, alt FROM " . $MID . " LIMIT 10"; $newpics = mysql_query($sql); - Devon Knowles -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/uns

php-windows Digest 2 Mar 2002 14:43:27 -0000 Issue 1025

2002-03-02 Thread php-windows-digest-help
php-windows Digest 2 Mar 2002 14:43:27 - Issue 1025 Topics (messages 12394 through 12398): R: [PHP-WIN] error query 12394 by: Darvin Andrioli Re: any comment? 12395 by: Ross Fleming 12396 by: John Meyer 12397 by: Shrock, Court Dumb Question 12398 by

[PHP-WIN] Dumb Question

2002-03-02 Thread Cary
I hate to ask such a dumb question, but :-) I downloaded the security patch for php4.1.1 but have no clue how to apply it. Would one of you please clue me in ? Thanks, Cary -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php