[PHP-WIN] ASSISTANCE NEEDED

2003-07-02 Thread MARIAM ABACHA
Hello, I am sorry for the embarrassment this letter might cause you as we have not had any correspondence before this letter. I got your address through my nephew with Nigerian Military Chamber of Commerce industry and Mining during my research for a reliable and trustworthy partner who l can

php-windows Digest 3 Jul 2003 05:01:13 -0000 Issue 1806

2003-07-02 Thread php-windows-digest-help
php-windows Digest 3 Jul 2003 05:01:13 - Issue 1806 Topics (messages 20657 through 20663): MSSQL HELP 20657 by: disko_kex 20658 by: Nick H. Help compiling custom php extensions 20659 by: Adam Kinder got linear algebra? 20660 by: Edgar Hassler Re: Making sea

[PHP-WIN] Re: php_ftp.dll

2003-07-02 Thread jsWalter
"Canadaka" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Me and a friend have been trying to make a php ftp client, it works fine on > *nix systems, but not on Windows. We looked at everything, until i finaly > noticed that php 4.2.3 is missing in the php.ini the extension=php_ftp.d

Re: [PHP-WIN] Warning: mail(): SMTP server response: 550 Unable torelay

2003-07-02 Thread Leo G. Divingracia III
php wrote: I'm fairly new to php and I'm trying to setup mail functionality from php on IIS 4.0. I keep getting this error. I have tried ever combination for the SMTP settings in the php.ini file, but nothing seems to work. I can send mail using CDONTS on this server, but using php I cannot ch

[PHP-WIN] Re: Making search functions (Search engine newbie)

2003-07-02 Thread Dan McFall
Try PHPMaker. http://www.hkvstore.com/phpmaker/ Free trial and less than $30 US to purchase. It builds basic, advanced, or both searches into your pages automatically based on criteria you define. Let it build some pages with basic and advanced search and then examine the code to see how it is d

[PHP-WIN] got linear algebra?

2003-07-02 Thread Edgar Hassler
Hello everybody, I'm looking for a linear algebra "package" for PHP. I've seen some classes on the websites for simple matrix arithmetic, but I'm looking for something along the lines of PDL for Perl. Many thanks, Edgar Hassler -- PHP Windows Mailing List (http://www.php.net/) To unsub

[PHP-WIN] Help compiling custom php extensions

2003-07-02 Thread Adam Kinder
Hello, I've written a custom PHP extension on Windoze using Visual C++ 6.0. I'm using the latest source, 4.3.2, and have the environment setup correctly. When I compile however, the compiler cannot find strings.h. Ive searched my system, and I indeed don't have strings.h (duh), but I do have

Re: [PHP-WIN] MSSQL HELP

2003-07-02 Thread Nick H.
It's not as easy with MSSQL, but the TOP syntax should work. SELECT TOP 10 user,email FROM userdb WHERE user LIKE '%b%' Regards, Nick H. Network Operations Center [EMAIL PROTECTED] - Original Message - From: "disko_kex" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July

[PHP-WIN] MSSQL HELP

2003-07-02 Thread disko_kex
In MySQL is easy to page with LIMIT but it doesnt work with MSSQL. So how do I make it page in MSSQL?

php-windows Digest 2 Jul 2003 16:34:31 -0000 Issue 1805

2003-07-02 Thread php-windows-digest-help
php-windows Digest 2 Jul 2003 16:34:31 - Issue 1805 Topics (messages 20645 through 20656): Making search functions (Search engine newbie) 20645 by: Bobo Wieland 20653 by: Svensson, B.A.T. (HKG) 20654 by: Svensson, B.A.T. (HKG) Admin pages as simple as possible...

[PHP-WIN] Connect Active Directory using LDAP... please help :)

2003-07-02 Thread Vince C
Hi everyone, I tried to connect to Active Directory (AD) by using php. I heard that it could use LDAP to achieve it. I have written some code on my machine (Win2000) and try to connect to AD. It looks like the it could connect, bind, and even search (I determined base on the line I placed). How

[PHP-WIN] COM Object help- have working .asp example - Paymentech

2003-07-02 Thread Marty Yantzie
I am trying to setup an small ecommerece site. I would like to use php to accomplish this. I have been able to get the .asp example to work fine but am having trouble getting the asp converted to php. Am i heading in the right direction? Any ideas? Here is a trimmed version of the PHP that I

RE: [PHP-WIN] Making search functions (Search engine newbie)

2003-07-02 Thread Svensson, B.A.T. (HKG)
Errata: soundexing > -Original Message- > From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 02, 2003 3:11 PM > To: Bobo Wieland; [EMAIL PROTECTED] > Subject: RE: [PHP-WIN] Making search functions (Search engine newbie) > > > You need (or you might want to use

RE: [PHP-WIN] Making search functions (Search engine newbie)

2003-07-02 Thread Svensson, B.A.T. (HKG)
You need (or you might want to use) sounding if you want to do "spell error" searches. There might be something mentioned about this in the MySQL documentation. > -Original Message- > From: Bobo Wieland [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 02, 2003 9:15 AM > To: [EMAIL PROTECT

Re: [PHP-WIN] Re: Undefined variables

2003-07-02 Thread Stephen
Personally, I would use error_reporting = E_ALL & ~E_NOTICE instead of E_PARSE; Both will get rid of the annoying "empty variable" notices, but your solution also gets rid of a number of important error messages that really are needed. If the website is available to members of the public, then er

[PHP-WIN] Just testing something - please ignore

2003-07-02 Thread DessieD
Just testing something - please ignore Will remove this shortly.. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Admin pages as simple as possible...

2003-07-02 Thread Seung Hwan Kang
Bobo Wieland wrote: I want my client to be able to update his site him self, and I want it to be as simple as possible for him. I think I will save the data as XML in a MySQL db (since I've allready made the parser for presenting the XML data...) Use table field names as an xml tag. and display it

Re: [PHP-WIN] SQL Server - 255 field size limit in PHP ?

2003-07-02 Thread DessieD
Thanks Flint... and thanks also to Louis Gree. I changed the type in SQL Server from varchar to text and it sorted out the problem. Cheers Des "Flint Doungchak" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] . Dessie, The deal is that the default microsoft libraries that are use

[PHP-WIN] Re: Undefined variables

2003-07-02 Thread Jupiter Wen
You may edit c:\windows\php.ini, and change [php] error_reporting= E_ALL; to [php] error_reporting= E_PARSE; Good luck! :) Jupiter Wen "Jorge L." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I bought a book on PHP, and in one of the examples it declares a variable > without a

[PHP-WIN] Admin pages as simple as possible...

2003-07-02 Thread Bobo Wieland
I want my client to be able to update his site him self, and I want it to be as simple as possible for him. I think I will save the data as XML in a MySQL db (since I've allready made the parser for presenting the XML data...) Now the problem is this; If my client wants to publish a new article

[PHP-WIN] Admin pages as simple as possible...

2003-07-02 Thread Bobo Wieland
I want my client to be able to update his site him self, and I want it to be as simple as possible for him. I think I will save the data as XML in a MySQL db (since I've allready made the parser for presenting the XML data...) Now the problem is this; If my client wants to publish a new article

[PHP-WIN] Making search functions (Search engine newbie)

2003-07-02 Thread Bobo Wieland
How do I best implement search functions on my site? (just local search). All info that should be searched is in a MySQL table. I wan't both a simple search that searches everything and one advanced seach form. What I need to know is how to set up the SQL-query. I've only done searches with full