[PHP-WIN] SQL Server 2000

2002-08-16 Thread DAG
Hi, I'm running PHP over IIS and I want to connect to a SQL Server DB, can you help me with that? I'm a newbie. Thnx in advance. Daniel Astudillo [EMAIL PROTECTED] -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Getting Field Names in Microsoft SQL

2002-08-16 Thread Brad Thomas
"R.S. Herhuth" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I'm trying to build a dynamic script that basically extracts all of the > fields in a MS SQL database...I just can't seem to figure out how to get > at the field names themselves. I am using the m

[PHP-WIN] Re: [PHP] Upgraded to PHP 4.2.2 and completely lost all GET and POSTvariables

2002-08-16 Thread Rasmus Lerdorf
Did you bother reading the documentation and release notes before upgrading? Edit your php.ini file and turn register_globals on. -Rasmus On Fri, 16 Aug 2002, james daily wrote: > > RE: phpsecurityadmin-2002-07-24.zip and PHP 4.2.2 > > PLATFORM: win 98 > > BACKGROUND: in order to use the above

[PHP-WIN] Upgraded to PHP 4.2.2 and completely lost all GET and POST variables

2002-08-16 Thread james daily
RE: phpsecurityadmin-2002-07-24.zip and PHP 4.2.2 PLATFORM: win 98 BACKGROUND: in order to use the above classes i had to upgrade to PHP 4.2.2 PROBLEM: when i upgraded to 4.2.2, all my old scripts lost the GET or POST info being passed. COMMENTS: everything except the phpsecurityadmin classes

php-windows Digest 16 Aug 2002 21:10:10 -0000 Issue 1292

2002-08-16 Thread php-windows-digest-help
php-windows Digest 16 Aug 2002 21:10:10 - Issue 1292 Topics (messages 15296 through 15316): Re: CSS Question 15296 by: lallous 15297 by: lallous 15303 by: Brian 'Bex' Huff 15305 by: Martin.Andrew asp2php: an example of strange behavior 15298 by:

Re: [PHP-WIN] DHTML editor + Uploading pictures

2002-08-16 Thread Luis Ferro
Matt Babineau wrote: >Martin, this is excellent but it doesn't provide support for uploading >images to my server once the user is completed making changes :( > > > > Can you provide the urls/files... i've been looking for a likewise solution... Thanx in advance, Luis Ferro TelaDigital.net

RE: [PHP-WIN] Getting Field Names in Microsoft SQL

2002-08-16 Thread Scott Carr
A more portable way would be the following (I am using PEAR::DB, but you could use the native driver as long as it returns an Associative Array.: include 'db.php'; $db = DB::connect($dsn); $strSQL = "SELECT * FROM {Table}"; $row = $db->getRow($strSQL, DB_FETCHMODE_ASSOC); $field_names = array_ke

RE: [PHP-WIN] Getting Field Names in Microsoft SQL

2002-08-16 Thread David Hollister
Database jargon can always be a factor in clear communication, so I'll be careful in my suggestions. I take your question to mean: "how do I return the column names from any given table within MS SQL?" If that's what you want, you need to select information from the [syscolumns] table in your da

[PHP-WIN] get all headers and IIS

2002-08-16 Thread Thoenen, Peter Mr. EPS
Hello, I see the getallheaders() function for apache but nothing for IIS ... anybody know a way to get all the headers for a request in IIS? -Peter ## Peter Thoenen - Systems Programmer Commercial Communications Camp Bondsteel, Kosovo ###

[PHP-WIN] Getting Field Names in Microsoft SQL

2002-08-16 Thread R.S. Herhuth
I'm trying to build a dynamic script that basically extracts all of the fields in a MS SQL database...I just can't seem to figure out how to get at the field names themselves. I am using the mssql_fetch_array followed by the $row['field_name'] in an array. But I would like to make the field_nam

[PHP-WIN] Re: Can't send mail

2002-08-16 Thread RCAuction
Find this in your php.ini Adjust to meet your requirements Your mail will now work Remember you must restart IIS after you make these changes. [mail function] ; For Win32 only. SMTP = smtp.yourserver.net ; For Win32 only. sendmail_from = [EMAIL PROTECTED] "Chris Schoeman" <[EMAIL PROTECTED]> w

[PHP-WIN] Re: AllowPathInfoForScriptMappings in IIS5 (was Re: [PHP] URL path question)

2002-08-16 Thread Seairth Jacobs
I hope that's wrong. As for your example below, you would send "more_path/file.py/even_more_path/file.pl" to the "/path/file.php" script. It is not the server's concern how the path is handled. As for complexity, this doesn't make sense to me. Apache still has to parse the path to determine if

RE: [PHP-WIN] DHTML editor + Uploading pictures

2002-08-16 Thread Matt Babineau
Martin, this is excellent but it doesn't provide support for uploading images to my server once the user is completed making changes :( Matt Babineau MCWD / CCFD - e: [EMAIL PROTECTED] p: 603.943.4237 w:

RE: [PHP-WIN] Can't send mail

2002-08-16 Thread Svensson, B.A.T. (HKG)
> I am using php as an isapi module on IIS. > Sending mail from within php scripts don't work. > Anyone has an idea of what is wrong? "I have pain in my feet! What's wrong?" Some more information about what you did and what kind of result it gave could be help full clues to figure out why it wen

[PHP-WIN] Can't send mail

2002-08-16 Thread Chris Schoeman
I am using php as an isapi module on IIS. Sending mail from within php scripts don't work. Anyone has an idea of what is wrong? Thankx -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] DHTML editor + Uploading pictures

2002-08-16 Thread Matt Babineau
Does anyone know where I can get or have sample code of a WYSIWYG type editor that I can embed into a web page that will let you add images to the editing space and it will later upload those images? Matt Babineau MCWD / CCFD - e:

RE: [PHP-WIN] CSS Question

2002-08-16 Thread Martin.Andrew
You can always build the entire CSS file with PHP and use standard PHP varaibles where necessary > I know this is not the specific list for this, but I figured there'd be a couple > CSS gurus here. > > Is there a way to create CONTSTANTS or variables in css? > > I have 2 colors that I need t

[PHP-WIN] SOAP Installation

2002-08-16 Thread Kit Kerbel
Quick question...to install soap for php, is it just a matter of placing a dll in the extensions folder and adding a line to php.ini? If not, can someone point me in the direction of a site explaining how to install it. Thanx, Kit

RE: [PHP-WIN] CSS Question

2002-08-16 Thread Brian 'Bex' Huff
I can state quite comfortable that neither CSS Level 1 nor CSS Level 2 support constants, variables, or anything along those lines. They are strict data files. There is some talk on the lists about adding such support, but not much hope. Looks like you're stuck typing :1,$s/x/green/g in Vim

[PHP-WIN] Re: AllowPathInfoForScriptMappings in IIS5 (was Re: [PHP] URL pathquestion)

2002-08-16 Thread Brian 'Bex' Huff
Id advise against using this kind of architecture. Its my understanding that Apache2 will no longer allow this kind of CGI trick in its new fangled high-speed filter model... its too hard to tell which module is supposed to be executed first. For example: /path/file.php/more_path/file.py/eve

Re: [PHP-WIN] PDF Files...

2002-08-16 Thread robert mischke
> >> The last portion of your request is not possible under >> > the current > libraries that are out there. I was unable to >> find one > anyway. So, for now, you're out of luck. > > In NO language? Not even ASP? PDFlib have got an "extension", called PDI. It allows you to edit existing PDF

[PHP-WIN] Re: Loading Extension...

2002-08-16 Thread lallous
;extension=php_pdf.dll you have to uncomment that line above inside php.ini Elias "Brian McGarvie" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > OK Help > > I always seem to have trouble installing extensions... what am I doing > wrong? (trying to get P

[PHP-WIN] Apache2.0.40/php4.2.2/Win XP home

2002-08-16 Thread Stuart Hamilton
I have read lots of info about this problem on the news group however it has not solved my problem! I am trying to get PHP 4.2.2 to load up on Apache 2.0.40 as a module but it just ain't working. I follow the instructions and add the following lines to the http.conf file:- LoadModule

[PHP-WIN] asp2php: an example of strange behavior....

2002-08-16 Thread Svensson, B.A.T. (HKG)
Interesting automated port made by asp2php: This code: OpenDb Query = "exec lgtc_get_Table_Spec 'luCluster'" DisplayRS Query = "exec lgtc_get_Table_Spec 'luAccNr'" DisplayRS Query = "exec lgtc_get_Table_Spec 'luCluAccLnk'" DisplayRS Query = "exec lg

[PHP-WIN] Re: CSS Question

2002-08-16 Thread lallous
Since you're also posting in PHP forums you can make use of such language! ;) .style1 { color:; height:100px} .style2 { color:; height:100px} etc... Elias "Scott Carr" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I know

[PHP-WIN] Re: CSS Question

2002-08-16 Thread lallous
Since you're also posting in PHP forums you can make use of such language! ;) .style1 { color:; height:100px} .style2 { color:; height:100px} etc... Elias "Scott Carr" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I know t

php-windows Digest 16 Aug 2002 08:12:47 -0000 Issue 1291

2002-08-16 Thread php-windows-digest-help
php-windows Digest 16 Aug 2002 08:12:47 - Issue 1291 Topics (messages 15276 through 15295): Re: AllowPathInfoForScriptMappings in IIS5 (was Re: [PHP] URL path question) 15276 by: Seairth Jacobs 15283 by: Christoph Grottolo 15289 by: Seairth Jacobs 15293 by: S

Re: [PHP-WIN] Checkbox/Database Issues

2002-08-16 Thread toby z
stephanie make sure ur inserting the right values into ur db check the field names in ur form && db ive tried this thing and it works fine . but incase u still run into error sen me a copy of ur code n ill scan it thru fo u . good luck . toby . <[EMAIL PROTECTED]> w