[PHP-WIN] ADODB and using Workstation ID (odbc)

2001-10-23 Thread Søren Nielsen
Are there anyone out there who can give me an example of setting a connection property using com_set() What I want is to set the 'Workstation Id' on an ADODB.Connection. In ASP it would be like this: Set cnn = New ADODB.Connection cnn.Properties("Workstation Id").Value = 'foo'; I would hate mysel

Re: [PHP-WIN] trouble while connecting with HTTPS server with certificate. Using cURL

2001-10-23 Thread Huang Yuzhen
I look for the reason and find that , CURL serial function work fine with 4.0.5 , but when i update to 4.0.6,I can not see any output without error, so i suggest you try to use php 4.0.5. - Original Message - From: "Hugo Alexandre Almeida Soares Dias" <[EMAIL PROTECTED]> To: "

[PHP-WIN] MSSQL 7.0 and PHP

2001-10-23 Thread Franco Breciano
I'm using php to retrieve a Query from a SQLServer 7.0 database. My code is this one: $base = mssql_select_db($db,$conexion); $sql="SELECT MarcasSolicitante FROM Marcas"; $result = mssql_query($sql,$conexion); while ($myrow = mssql_fetch_array($result)) { $mensaje= $myrow["MarcasSolici

RE: [PHP-WIN] PHP Installation

2001-10-23 Thread Jason Bouwmeester
Just a bit of an update. As I mentioned below, I am using virtual hosts to host 3 websites on my machine. I ended up copying a php file to the default website and lo and behold the php ran fine. Why won't it run on the other two sites? Does anyone have any ideas? TIA, jb -Original Message---

[PHP-WIN] Re: It gives me just a header!

2001-10-23 Thread Jason Wood
It means that either PHP is not running, or there's a parse error on the page and you dont have the error handling set. -- Jason Wood Chief Technology Officer Expressive Tek, Inc. 407 Kehrs Mill Road Ballwin, MO 63011 Phone 636.256.1362 www.expressivetek.com "StefáN Vingir SkarphéðInsson" <[E

[PHP-WIN] It gives me just a header!

2001-10-23 Thread Stefán Vingir Skarphéðinsson
Hello folks! I was trying to execute a PHP script (on Win98) but it came only this source code from my server: This happens to all the scripts I try to execute both from my server and using MS-DOS-Prompt (php webpage.php) it returns nothing What's wrong? Please help! -- PHP Windows

[PHP-WIN] It gives me just a header!

2001-10-23 Thread Stefán Vingir Skarphéðinsson
Hello folks! I was trying to execute a PHP script (on Win98) but it came only this source code from my server: This happens to all the scripts I try to execute both from my server and using MS-DOS-Prompt (php webpage.php) it returns nothing What's wrong? Please help! -- PHP Windows M

php-windows Digest 23 Oct 2001 22:14:34 -0000 Issue 818

2001-10-23 Thread php-windows-digest-help
php-windows Digest 23 Oct 2001 22:14:34 - Issue 818 Topics (messages 9961 through 9976): retrieving form data 9961 by: Mauri 9963 by: FPU.WHITES1.FRIENDSPROVIDENT.CO.UK 9965 by: Svensson, B.A.T. Undefined Variables ? 9962 by: Maurice Schalker Re: [PHP] Unde

[PHP-WIN] PHP Installation

2001-10-23 Thread Jason Bouwmeester
Apache 1.3.20 PHP 4.06 W2K Pro I installed Apache to d:\apache I extracted the php files to d:\apache\modules\mod_php4 I have the following code in httpd.conf: ScriptALias /php/ "d:/Apache/modules/mod_php4/" AddType application/x-httpd-php .php AddType application/x-httpd-php-source

Re: [PHP-WIN] .php3 extension not being executed!

2001-10-23 Thread Todd Williamsen
Ross... Thank you! "Ross Fleming" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Apache\conf\httpd.conf > > Just open it in notepad or similar and insert it in where the rest of the > AddType's are. Search the document for php, there is probaby something >

RE: [PHP-WIN] Re: Boy Makes $71,000 in 3 Weeks. You Can Too!!

2001-10-23 Thread Corn Vollney-R7019C
This is basically another multi-level marketing scam. You pay the guy 5 bucks to 5 reports that basically tell you to send out X number of emails to all your friends, who then (supposedly) pay you 5 bucks to get the 5 reports, etc. Its a total scam and provides no value add for our country, the

RE: [PHP-WIN] .php3 extension not being executed!

2001-10-23 Thread Ross Fleming
Apache\conf\httpd.conf Just open it in notepad or similar and insert it in where the rest of the AddType's are. Search the document for php, there is probaby something similar commented out. Just stick in the one I gave you. ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php

[PHP-WIN] Re: Boy Makes $71,000 in 3 Weeks. You Can Too!!

2001-10-23 Thread Jason Wood
I'd rather have my mailbox stuffed with 100 dollar bills =) -- Jason Wood Chief Technology Officer Expressive Tek, Inc. 407 Kehrs Mill Road Ballwin, MO 63011 Phone 636.256.1362 www.expressivetek.com <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > Thank you for your time and i

Re: [PHP-WIN] .php3 extension not being executed!

2001-10-23 Thread Todd Williamsen
Ross, Thanks... but which file is that? I am trying to ween myself off of MS stuff, so be patient with me "Ross Fleming" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > What do you mean? If you mean that index.php3 is just spewing out the raw > source code t

RE: [PHP-WIN] .php3 extension not being executed!

2001-10-23 Thread Ross Fleming
What do you mean? If you mean that index.php3 is just spewing out the raw source code then it's because you don't have ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php3 Action application/x-httpd-php "/php/php.exe" in your apache conf file. Ross -Original Messa

[PHP-WIN] .php3 extension not being executed!

2001-10-23 Thread Todd Williamsen
What could be causing this? I am using Win2k with Apache thanks -- 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 PROTECTED]

[PHP-WIN] FLASH functions

2001-10-23 Thread Augusto Cesar Castoldi
Do you hava the FLASH dll for PHP-Windows? Can you send me? Or any help about where I'll find it? thanks, Augusto ___ Yahoo! GeoCities Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo!

[PHP-WIN] Re: [PHP] Undefined Variables ?

2001-10-23 Thread Neil Freeman
You can test if a variable has been set by using the command: isset() eg if (isset($my_name)) echo "hi"; else echo "no name set"; This will stop any undefined variable warnings. Neil Maurice Schalker wrote: > After an update to 4.06 my guestbook isn´t working correct. > Between de co

RE: [PHP-WIN] retrieving form data

2001-10-23 Thread Svensson, B.A.T.
What are you actually trying to do? I suspect you want to use POST instead of GET. >-Original Message- >From: Mauri [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, October 23, 2001 4:34 PM >To: [EMAIL PROTECTED] >Subject: [PHP-WIN] retrieving form data > > >Hello, I have some problems passin

[PHP-WIN] Re: [PHP] Undefined Variables ?

2001-10-23 Thread Philip Olson
Most likely your php.ini settings are a little different now. In this case, it's the error_reporting setting. Specifically, E_NOTICE will shout out such errors. http://www.php.net/manual/en/phpdevel-errors.php http://www.php.net/manual/en/features.error-handling.php http://www.php.net/

[PHP-WIN] retrieving form data

2001-10-23 Thread FPU . WHITES1
--- Received from FPU.WHITES1 799 3703 23-10-01 15:36 -> [EMAIL PROTECTED] Is the parameter appearing in the URL when you submit the page? If you are using GET it should appear in the URL something like this: http://www.someserver.com/MyPage.php?author=somevalue -Steve

[PHP-WIN] Undefined Variables ?

2001-10-23 Thread Maurice Schalker
After an update to 4.06 my guestbook isn´t working correct. Between de code, i get an error : Undefinde variable ? What went wrong? -- 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

[PHP-WIN] retrieving form data

2001-10-23 Thread Mauri
Hello, I have some problems passing data from a form to a php page. I have a text field named Author, and when I submit the page with GET to the php one it says that Author is undefined. I just wrote: echo $Author; Can anyone help me? Thanks -- PHP Windows Mailing List (http://www.php.net/) To

php-windows Digest 23 Oct 2001 09:56:04 -0000 Issue 817

2001-10-23 Thread php-windows-digest-help
php-windows Digest 23 Oct 2001 09:56:04 - Issue 817 Topics (messages 9954 through 9960): Re: mysql php help 9954 by: Svensson, B.A.T. Re: .diff files 9955 by: Sebastian Müsch Re: Problem with Sablotron extention for Windows 9956 by: Svensson, B.A.T. trouble while

[PHP-WIN] Thank You For Your Interest..........

2001-10-23 Thread mini . atmbiz
Everyone uses ATM machines at one time or another, and if you are seriously looking for a way to generate income in a secure and consistent manner, the ATM business might be what you are looking for. We can show you how to Profit daily and be a part of this $ 375 Billion dollar industry. Our