RE: [PHP-WIN] PHP Triad or Nusphere or ??

2002-04-30 Thread Sandeep Murphy
Having tried out both, my vote goes for PHP Triad .. rarely gave me any problem!... good luck.. sands -Original Message- From: Chris Lott [mailto:[EMAIL PROTECTED]] Sent: terça-feira, 30 de Abril de 2002 6:28 To: [EMAIL PROTECTED] Subject: [PHP-WIN] PHP Triad or Nusphere or ?? Not hav

[PHP-WIN] RE: php 4.1.2 / $_SESSION

2002-04-30 Thread Martin Kemp
I'm including the text of a previous discussion on this subject: -- begin include 4.1.1 works perfectly well but when they introduced 4.1.2, there was a bug that was introduced also. -Original Message- From: Martin Kemp [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 5:24 AM T

[PHP-WIN] Access databse

2002-04-30 Thread Mikael Syska
I want to access a microsoft access database, how do i do that??? I can't find any tutorials or anything, can any one help me -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] R: [PHP-WIN] Access databse

2002-04-30 Thread Alberto. Sartori
You can use ADO creating istances. Ex: $conn=new COM("ADODB.Connection"); Full example at: http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=303&lngWId=8 regards, Alb -Messaggio originale- Da: Mikael Syska [mailto:[EMAIL PROTECTED]] Inviato: martedì 30 aprile 2002 11.33 A: [EMAI

Re: [PHP-WIN] Access databse

2002-04-30 Thread Luis Ferro
Check the functions regarding ODBC support. You will need to add the database in the ODBC manager and after that, it is transparent like any other DSN database. Check in odbc_connect() for instance. Support is built in in php4. Cheers, Luis Ferro TelaDigital.net Mikael Syska wrote: >I want

RE: [PHP-WIN] Access databse

2002-04-30 Thread Brian McGarvie
I assume from the request you're using win(98+) and IIS 4+ and have installed PHP and it works... Now, IF your Access database will be accesed using any kind of Access front-end while the website will be being used, you will need to replicate your access database because of the locking that occur

Re: [PHP-WIN] Access databse

2002-04-30 Thread Mikael Syska
> Check the functions regarding ODBC support. You will need to add the > database in the ODBC manager and after that, it is transparent like > any other DSN database. How do i do that, I use Windows2000 and i dont know how to do that, i can find the OBDC settings but dont know what to change..

[PHP-WIN] Re: Access databse

2002-04-30 Thread George Nicolae
Take a look at http://www.phpbuilder.com/columns/siddarth2228.php3?print_mode=1 -- Best regards, George Nicolae IT Manager ___ PaginiWeb.com - Professional Web Design www.PaginiWeb.com "Mikael Syska" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROT

[PHP-WIN] PHP and GMP on IIS for WIN2k

2002-04-30 Thread MaxPower
man that was a lot of 3 letter combinations. so here is the deal, i'm basically pretty new to PHP. my website (www.haduken.com shameless plug) is written mostly in ASP. now im working on writing an admin suite that uses PHP, mainly to learn the language. well i want to play around with some of my

[PHP-WIN] FuLL text search engine

2002-04-30 Thread Alberto. Sartori
Hi guys, I'm trying to create a full text search engine in my site. The idea should be this: looking for the key in every files (bypassing html code) and returning the percentage of results based on the matching. Any basic idea about it? thanks in advance... best regards, RaS! Alberto Sarto

RE: [PHP-WIN] Access databse

2002-04-30 Thread Svensson, B.A.T. (HKG)
Don't you think you stretch these question a little bit to far now? This is after all a PHP-mailing list, not a M$-support e-mail list. Anyhow, M$ done its best to alter things between different versions of Windows (I am using NT so I don't know the excat location of the things your a looking fo

RE: [PHP-WIN] Access databse

2002-04-30 Thread Tom Belich
I'm getting to this post late, however, instead of messing around with ODBC data sources which M$ calls a DSN, I use a connection string instead (for Windows 2000 the ODBC data sources are in Settings, Control Panel, Administrative Tools, Data Sources (ODBC). I've used the following code for an A

php-windows Digest 30 Apr 2002 18:16:37 -0000 Issue 1120

2002-04-30 Thread php-windows-digest-help
php-windows Digest 30 Apr 2002 18:16:37 - Issue 1120 Topics (messages 13412 through 13423): Re: PHP Triad or Nusphere or ?? 13412 by: Sandeep Murphy Re: php 4.1.2 / $_SESSION 13413 by: Martin Kemp Access databse 13414 by: Mikael Syska 13416 by: Luis Ferro

RE: [PHP-WIN] executing an external program

2002-04-30 Thread Scott Hurring
Also, try system() if you want to see the output of the called program (http://php.net/system) PS: The online help system is your friend. :) --- Scott Hurring Systems Programmer EAC Corporation [EMAIL PROTECTED] Voice: 201-462-2149 Fax: 201-288-1515 > -Original Message- > From: Mike Fl

[PHP-WIN] Problem sending variables with an browser

2002-04-30 Thread Waldemar Brand Neto
Hy, I am a newbie in php and I have a problem sending variables. This is the part of the code wth problem $paramentro="TUBOS E CONEXOES TIGRE"; echo ""; echo "". $ix." "; echo ""; When I pass the mouse over the link the browser show to me: Produto.php?nome=TUBOS. Every caracther after the space

RE: [PHP-WIN] Problem sending variables with an browser

2002-04-30 Thread Dash McElroy
Put quotes in the href="" part like this: echo "". $ix." "; You may want to convert the spaces to %20's (there must be a PHP function to do this...). -Dash -Original Message- From: Waldemar Brand Neto [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 1:17 PM To: Php Subject: [P

[PHP-WIN] Cant get PHP to run on Win 98

2002-04-30 Thread Jeff Britts
I just started learning PHP and have looked to solve this issue, but haven't got the correct answer yet. I installed the latest version of PHP on my Win98 machine running PWS. I can do php_info(), so it seems the installation is correct. Now I'm trying a simple form get and all I receive is the

RE: [PHP-WIN] Need help with functions

2002-04-30 Thread Scott Hurring
I'm not sure if i properly understand what you need, but *if* i understand; you need to pass the ENTIRE form to a function. On the HTML form, name all form fields somethign like: "form[name]" "form[email]" Then, whatever function needs the ENTIRE form, just pass it the $form array. If you wa

RE: [PHP-WIN] Problem sending variables with an browser

2002-04-30 Thread Scott Hurring
use: urlencode($param) --- Scott Hurring Systems Programmer EAC Corporation [EMAIL PROTECTED] Voice: 201-462-2149 Fax: 201-288-1515 > -Original Message- > From: Dash McElroy [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 30, 2002 4:19 PM > To: 'Waldemar Brand Neto'; Php > Subject: RE:

RE: [PHP-WIN] Re: i'm stuck guys

2002-04-30 Thread Scott Hurring
It probably isnt working becuase AFAIK, it's SHIFT+Click to force a refresh with MSIE. --- Scott Hurring Systems Programmer EAC Corporation [EMAIL PROTECTED] Voice: 201-462-2149 Fax: 201-288-1515 > -Original Message- > From: Luis Ferro [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 29,

Re: [PHP-WIN] Problem sending variables with an browser

2002-04-30 Thread Waldemar Brand Neto
Thanks a lot Dash, the problem is solved. Waldemar - Original Message - From: "Dash McElroy" <[EMAIL PROTECTED]> To: "'Waldemar Brand Neto'" <[EMAIL PROTECTED]>; "Php" <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 5:18 PM Subject: RE: [PHP-WIN] Problem sending variables with an brows

RE: [PHP-WIN] Problem sending variables with an browser

2002-04-30 Thread Scott Hurring
Remember the online help... http://php.net/keyword It is seriously cool... i wish that every language's official site had as easy a way to get documentation as PHP. :) --- Scott Hurring Systems Programmer EAC Corporation [EMAIL PROTECTED] Voice: 201-462-2149 Fax: 201-288-1515 > -Original Me

[PHP-WIN] USER_AGENT wrong thanks to proxy cache! Help!

2002-04-30 Thread Roderick Martin
I've got a script that calls the USER_AGENT variable and uses it to select a CCS file to load. Problem is, as I move from browser to browser, apparently the HTTP_USER gets stuck in the proxy cache and some browsers identify themselves as other browsers. Here's what I've found out. I have an .ht

[PHP-WIN] Re: Cant get PHP to run on Win 98

2002-04-30 Thread Matt Parlane
Hi Jeff... Have a look at http://www.php.net/release_4_2_0.php . >From version 4.2.0 onwards, request variables are no longer registered in the global scope. You'd probably find that if you used echo $_GET['C'] instead of just echo $C, it would work. Matt "Jeff Britts" <[EMAIL PROTECTED]> wrot

[PHP-WIN] Php on windows - Linux and Windows Editors

2002-04-30 Thread Sukhwinder Singh
Hello, I don't know why people don't reply to questions related to compiling php on windows. If we want that php should run on every (including windows) platform we must help people who try to achieve that. We cannot depend on windows binary download provided at php.net because many of the

[PHP-WIN] php.ini setting, need some info

2002-04-30 Thread Matt Babineau
What is this and what does it mean? ; Document expires after n minutes. session.cache_expire = 15 Why is the default set to 180? Matt Babineau Freelance Internet Developer e: [EMAIL PROTECTED] p: 603.943.4237 w: http://www.ill

Re: [PHP-WIN] Access databse

2002-04-30 Thread Cam
Mikael, the following steps should get you started: >From Windows, go to control panels->administrative tools->data sources (ODBC) Click on the System Data Source Name (DSN) tab Click Add and select Microsoft Access Database from the list (.mdb) Name your DSN and select the access file you are

RE: [PHP-WIN] Cant get PHP to run on Win 98

2002-04-30 Thread Ross Fleming
Make sure register_globals=On is set in your php.ini Ross -Original Message- From: Jeff Britts [mailto:[EMAIL PROTECTED]] Sent: 30 April 2002 21:13 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Cant get PHP to run on Win 98 I just started learning PHP and have looked to solve this issue, bu

[PHP-WIN] Please help PHP 4.2 on A 2.0 under WinXP

2002-04-30 Thread news \(mp\)
Hi there My text box is running WinXP Pro in german. Apache 2 is installed under c:\programme\apache group\ Apache works. Test page comes up. PHP 4.2 is installed under c:\programme\php\ I tried to get PHP to run as ISAPI as well as CGI to no avail. I modified httpd.conf to read like this:

[PHP-WIN] Undefined Variables?!

2002-04-30 Thread steven
I just recently installed a new master Hard drive and got rid of my old one. Of course I saved my web stuff. When I got my new hard drive setup on the same system with win xp and IIS and PHP I keep getting Undefined variable error messages. I've tried everything I can think of, the variables are

Re: [PHP-WIN] php.ini setting, need some info

2002-04-30 Thread Mike Flynn
I don't really know, but the manual says the following: session.cache_expire: specifies time-to-live for cached session pages in minutes; this has no effect for nocache limiter. Defaults to 180. http://www.php.net/manual/en/ref.session.php At 07:33 PM 4/30/02 -0400, Matt Babineau wrote: >What

Re: [PHP-WIN] Undefined Variables?!

2002-04-30 Thread Mike Flynn
Look in your PHP.INI file for the error_reporting variable. You'll want E_ALL & ~E_NOTICE. What probably happened was you either forgot to copy your old php.ini file back to your windows directory, or copied a new version of it without the & ~_NOTICE part that disabled undefined variable war

[PHP-WIN] Re: setting php variables from the client side

2002-04-30 Thread steven
Yes it is possible... in your form you're either using the "post" or "get" (probably "get") as your method. Whatever it is switch it to the one you aren't using. if you're using post use get and likewise if the opposite is true. -steven "Rs Herhuth" <[EMAIL PROTECTED]> wrote in message [EMAIL P

RE: [PHP-WIN] Undefined Variables?!

2002-04-30 Thread Mike Flynn
At 11:28 PM 10/8/01 -0500, you wrote: >Thank you for your help so far but it seems as though the same problem >is happening. For some reason the php won't grab the variable values. >The only difference now is that it doesn't show me the error, it is just >blank where it should be displaying the v

[PHP-WIN] Carriage Return and Line Feed

2002-04-30 Thread Matt Babineau
When I use a textarea html tag to put some data into mysql, when I output it the carriage return and laine feed characters from the form do not stick after they are put into mysql text field. Is there a way to out the data with the carriage returns and linefeeds being read? Matt Babineau Freelan

[PHP-WIN] PHP generation of fields

2002-04-30 Thread Dash McElroy
I am trying to use PHP to generate and automatically select the current month in an HTML Form. Here is the code that flails: for ($i=01;$i<=12;$i++) { if($i = date(m)) { $selected = " selected"; } print "".date(F,mktime(0,0,0,$i))." \n"; } The output is a large amount of Ap

[PHP-WIN] Building a .dll extension using Cygwin?

2002-04-30 Thread Jon Baer
Hi, Im trying to build a simple "Hello World" C extension using Cygwin but can't find any examples or how this can be accomplished ... can anyone give a hint? Thanks. - Jon -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php