RE: [PHP-WIN] Wierd Windows Problems

2003-01-31 Thread Sean Malloy
Or Search Add imo: tag isn't standard HTML.. I would go with: -Original Message- From: Tobias Brandl [mailto:[EMAIL PROTECTED]] Sent: Friday, 31 January 2003 11:26 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Wierd Windows Problems this is a submit button.. so you sta

RE: [PHP-WIN] SQL SERVER TRUSTED CONNECTION HELP

2003-01-31 Thread Sean Malloy
SQL Server is set to "Windows Only" authentication mode. You can set it to "Windows and SQL Server" mode, by opening Enterprise Manager, right clicking on the server, choosing Properties | Security, and set it to "SQL Server and Windows" rather than "Windows Only" mode. -Original Message

RE: [PHP-WIN] How do i load my new activex dll?

2003-01-28 Thread Sean Malloy
Why would you use a com object to do an md5 hash? php has an inbuilt md5() function. -Original Message- From: Wayne [mailto:[EMAIL PROTECTED]] Sent: Monday, 27 January 2003 8:37 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] How do i load my new activex dll? hey ya, I have made a new dll

RE: [PHP-WIN] PHP on IIS4 problem

2003-01-21 Thread Sean Malloy
If you are usiong the PHP.EXE binary instead of the ISAPI module. .php should be mapped to: c:\php\php.exe "%1" so IIS passes the document to PHP as an argument. -Original Message- From: Patrick Chemali [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 21 January 2003 7:14 PM To: [EMAIL PROTECT

RE: [PHP-WIN] mysql tools lost .......

2003-01-17 Thread Sean Malloy
http://www.dbtools.com.br -Original Message- From: toby z [mailto:[EMAIL PROTECTED]] Sent: Saturday, 18 January 2003 4:33 PM To: php hlp list Subject: [PHP-WIN] mysql tools lost ... hi guys im stuck bad as usual . mysql.com and datanamic.com r both down .. god alone knoz y

RE: [PHP-WIN] SQL-query

2003-01-17 Thread Sean Malloy
Why the hell would you want to do that? It looks ugly? I'll tell you what, when you have 8 records in the database, and #34,501 is missing, I wonder if you'll notice, or want to write code to fill, the "hole" if you really want to fix the hole (as much as I think you are seriously wasting yo

RE: [PHP-WIN] SQL-query

2003-01-17 Thread Sean Malloy
I'd fire any person working for me who was writing their own code to handle incrementing a unique ID field. If you have to insert a record after deleting one, with the same id, you have some serious relationship issues in your data. And if you _REALLY_ have to, then lock the data, turn auto incre

RE: [PHP-WIN] RE: What kind of Editor you used to build PHP script ?

2003-01-16 Thread Sean Malloy
And would you want all of that for free too? -Original Message- From: Uttam [mailto:[EMAIL PROTECTED]] Sent: Friday, 17 January 2003 5:55 PM To: 'skyweb'; [EMAIL PROTECTED] Subject: [PHP-WIN] RE: What kind of Editor you used to build PHP script ? i hv been using plain text editor (Noteta

RE: [PHP-WIN] What kind of Editor you used to build PHP script ?

2003-01-16 Thread Sean Malloy
I use visual studio. The editor is good, but the database integration is second to none, and its what I've become accustomed to. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] 4.3.0 and apache 1.3.27 on win98 -- LDAP cant load...

2003-01-16 Thread Sean Malloy
>From the PHP Manual regarding the php_ldap.dll extension: Note to Win32 Users: In order to enable this module on a Windows environment, you must copy libsasl.dll from the DLL folder of the PHP/Win32 binary package to the SYSTEM32 folder of your windows machine. (Ex: C:\WINNT\SYSTEM32 or C:\WINDOW

RE: [PHP-WIN] convert asp to php

2003-01-14 Thread Sean Malloy
Have a look at the ob_* functions. But to turn output buffering off (I think it is now on by default in 4.3.0 installs) right at the top of the page: ob_end_clean(); Response.Buffer = false ob_end_clean(); Response.Buffer = true ob_start(); Response.Flush ob_flush(); -Original Message---

RE: [PHP-WIN] initialize variables

2003-01-13 Thread Sean Malloy
String concatenation? Its a way ogf combining strings into one. $string = 'Hello'; $string = $string . ' World'; echo $string; would output 'Hello World' -Original Message- From: Wade [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 14 January 2003 4:02 PM To: [EMAIL PROTECTED] Subject: Re:

RE: [PHP-WIN] permission denied

2003-01-13 Thread Sean Malloy
Is the file on Your local machine, or on your ISP's web server? (Because I doubt they are running web servers on windows 98) If it is running on your ISPs server. Create a 'data' folder, and have them give the IUSR account modify access to the directory. That way the web server can read and write

RE: [PHP-WIN] initialize variables

2003-01-13 Thread Sean Malloy
Using double quotes ("), to create strings, PHP will handle any $ sign in the string as a variable.. There are two ways around this. $Entrees= array('Steak ($9)', 'Pizza ($7)', 'Pasta ($6)'); Or $Entrees=array("Steak (\$9)", "Pizza (\$7)", "Pasta (\$6)"); also, when using echo in this context:

RE: [PHP-WIN] initialize variables (was: Using the GET Method)

2003-01-13 Thread Sean Malloy
gt; To: "Bobo Wieland" <[EMAIL PROTECTED]> Cc: "PHP Windows Helplist" <[EMAIL PROTECTED]> Sent: Sunday, January 12, 2003 4:15 PM Subject: Re: [PHP-WIN] initialize variables (was: Using the GET Method) > > - Original Message - > From: "Bobo Wi

[PHP-WIN] RE: initialize variables (was: Using the GET Method)

2003-01-12 Thread Sean Malloy
o Wieland [mailto:[EMAIL PROTECTED]] Sent: Monday, 13 January 2003 2:00 AM To: Sean Malloy; [EMAIL PROTECTED] Subject: initialize variables (was: Using the GET Method) Please, explain this to me, because I couldn't figure it out by myself... If register_globals is set to 'off'

RE: [PHP-WIN] Using the GET Method

2003-01-12 Thread Sean Malloy
IMO, writing programs that work without register_globals to be enabled, is a good thing. Throughout the book, the code examples will have been created with register_globals on. (The default setting for older PHP installations/versions) just keep in mind that variables are not auto created for you

RE: [PHP-WIN] Which Web server to run under XP

2003-01-11 Thread Sean Malloy
copy php4ts.dll to c:\windows\system32 then! -Original Message- From: Ben Edwards [mailto:[EMAIL PROTECTED]] Sent: Saturday, 11 January 2003 10:37 PM To: Sean Malloy; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Which Web server to run under XP At 15:00 11/01/2003 +1100, you wrote: >I use

RE: [PHP-WIN] Which Web server to run under XP

2003-01-10 Thread Sean Malloy
Well there you go! I wasn't sure. I thought I read somewhere on the MSDN site saying IIS required >= winXP pro. I must have read it incorrectly -Original Message- From: toby z [mailto:[EMAIL PROTECTED]] Sent: Saturday, 11 January 2003 3:07 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMA

RE: [PHP-WIN] Which Web server to run under XP

2003-01-10 Thread Sean Malloy
I use IIS with PHP 4.3.0. The ISAPI dll in 4.3.0 is more stable than previous versions. Did you install IIS onto your machine? (I think you can only install IIS if you're running XP Pro. So if you're running Home, you're out of luck) There are plenty of other web servers. Read the PHP Install.txt

[PHP-WIN] Using VS.NET for PHP Projects - Revisit

2003-01-06 Thread Sean Malloy
seful apart from me. Regards, Sean -Original Message- From: Sean Malloy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 7 January 2003 1:34 PM To: PHP General Subject: [PHP] Using VS.NET for PHP Projects I know I can use Visual Studio to edit PHP files as plain text, but has anyone seen any w

[PHP-WIN] Re: php.ini

2001-10-01 Thread Sean Malloy
You could just use the session_save_path([string path]); function in your code? "Jtjohnston" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am running PHP in a weird configuration - :) - on a CD Rom! Therefore: > > 1) - Each time I run my CD ROM server, I