Re: [PHP] new user of php

2004-02-09 Thread Chris Garaffa
://www.php.net/manual/en/ref.ibase.php -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] .html or.php extension

2004-02-08 Thread Chris Garaffa
as PHP. Check the documentation for your web server to figure it out. The other way around is ok: put HTML code in a .php file... Yep, that's fine. PHP ignores anything that's not in ? ? and just outputs it to the browser. HTH, -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] OOP methodology{O|T} kinda'

2004-01-30 Thread Chris Garaffa
/JavaScript/very-basi-C background. While I was beginning to learn PHP, I took 2 C++ classes at college (this was beginning over a year ago), and have since moved on to Objective-C. -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] $_POST[$variable]

2003-12-11 Thread Chris Garaffa
$i is set to a string with the same name as POST variable you're trying to access, this code won't work. -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to view the structure of a table

2003-11-30 Thread Chris Garaffa
a table unfortunately, there is no simple command. But, you can query the PostgreSQL internal tables such as pg_class for that info: You can then use the PostgreSQL functions (documentation at http://us3.php.net/manual/en/ref.pgsql.php) to go through the results. HTH -- Chris Garaffa [EMAIL

Re: [PHP] Telling GD2 Where Fonts Are

2003-11-27 Thread Chris Garaffa
to be a path issue. Assuming that Macintosh HD is the volume you boot up OS X from, try changing the first line to: putenv('GDFONTPATH=/Fonts/'); because what you see as Macintosh HD is actually / to the UNIX layer of the OS. Hope this helps! -- Chris Garaffa [EMAIL PROTECTED] -- PHP General

Re: [PHP] Add Reply-To to this list(s)

2003-11-25 Thread Chris Garaffa
and not the author. Less hassle for me when replying and less risk of forgetting it. Thomas, You might be interested in reading this document: http://www.unicom.com/pw/reply-to-harmful.html. -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] text input truncated

2003-11-04 Thread Chris Garaffa
\ value=\$xyz\/form; HTH -- Chris Garaffa Nil Zero Heavy Industries http://moondrop.nilzero.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Echo issue RESOLVED!

2003-10-30 Thread Chris Garaffa
of the most stupid things as far as user interface goes. You mean you're looking forward to this: http://www.neowin.net/staff/creamhackered/longhornbuild4051/ie.jpg and this: http://imac.taxrecords.com/mstearne/foghorn/explorer.jpg ? -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] Archives

2003-10-22 Thread Chris Garaffa
On Oct 22, 2003, at 2:27 PM, Nathan Taylor wrote: Hey guys, Just a quickie: where are the archives for this list? What URL? You'll find the answer in the arch--- oops, nevermind. This URL was just launched: http://phparch.com/mailinglists -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing

Re: [PHP] Problem with CHMOD

2002-12-30 Thread Chris Garaffa
($file, 0666); $file = $HTTP_GET_VARS['file']..html; Hm. It looks like you're trying to chmod a variable that hasn't been defined yet. Try switching your statements, so that you have: $file = $HTTP_GET_VARS['file']..html; chmod($file, 0666); And let us know what happens. -- Chris Garaffa [EMAIL

Re: [PHP] Re: Problem whith query in query

2002-11-17 Thread Chris Garaffa
On Monday, November 18, 2002, at 12:07 AM, OrangeHairedBoy wrote: MySQL doesn't support queries inside queries. I think it's on their TODO list... Yup, it is. From http://www.mysql.com/doc/en/TODO_MySQL_4.1.html: --Begin quote-- 1.8.2 Things That Should be in 4.1 The following features are

Re: [PHP] script language=php???

2002-10-26 Thread Chris Garaffa
On Saturday, October 26, 2002, at 09:45 PM, John W. Holmes wrote: Ok then without asp how do I get script language=php to work? I checked out a PHP book today and it did mention running PHP scripts that way, without a .php extension. No, it still has to have a .php extension, or an extension

Re: [PHP] What the heck is this Zope?

2002-08-09 Thread Chris Garaffa
On Friday, August 9, 2002, at 07:27 AM, Jason Wong wrote: Which is better PHP or Zope? How long is a piece of string? Twice the length of one of its halves. Sorry. Couldn't resist. c. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What the heck is this Zope?

2002-08-09 Thread Chris Garaffa
On Friday, August 9, 2002, at 10:07 AM, Kondwani Spike Mkandawire wrote: Chris Garaffa [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Friday, August 9, 2002, at 07:27 AM, Jason Wong wrote: Which is better PHP or Zope? How long is a piece o

Re: [PHP] apache and php

2002-07-30 Thread Chris Garaffa
I'd recommend: http://www.apache.org/dist/httpd/Announcement.html -- Apache 1.3.26 -and- http://www.php.net/release_4_2_2.php -- PHP 4.2.2 Both include the latest bug fixes and are the latest stable releases. I've been running these on a RedHat 7.1 box (64MB RAM, 225mHz Pentium), with MySQL as

[PHP] [Getting OT] Re: [PHP] php redirect

2002-07-26 Thread Chris Garaffa
On Friday, July 26, 2002, at 11:32 AM, David Buerer wrote: ASP is about next on my list. I'm just trying to get javascript and PHP under my belt a little better firstwell ok, I'm waiting for my next paying client. I've found that you do have to use what you know to know whatever you need

[PHP] Running ./configure multiple times

2002-07-24 Thread Chris Garaffa
Well my RedHat system got hosed, so I reinstalled everything. I'm back to installing PHP now, and I'm wondering if it's safe for me to run ./configure multiple times. Here's the situation: I want to compile with gd support, and pdflib, and a bunch of other options. Instead of running a whole huge

Re: [PHP] how to access javascipt variables in PHP

2002-07-17 Thread Chris Garaffa
. You could have the page refresh itself to give you the variables, too. I'm sure there's a better way, though. Good luck, -- Chris Garaffa #!/usr/local/lib/php $contact_info[Name] = Chris Garaffa; $contact_info[Email] = [EMAIL PROTECTED]; $contact_info[Work] = [EMAIL PROTECTED]; $contact_info

Re: [PHP] Using index.php instead of index.html

2002-07-16 Thread Chris Garaffa
your httpd.conf file. The line that reads DirectoryIndex index.html and change it. Mine reads: DirectoryIndex index.html index.shtml index.html.var index.php index.phtml If you're using IIS, I'm sure it's available somewhere in the configs... -- Chris Garaffa #!/usr/local/lib/php $contact_info

Re: [PHP] Re: Development Tools

2002-07-14 Thread Chris Garaffa
Ahm... Anything good for MacOS X out there? I currently use and love BBEdit, but am open to other alternatives. Chris He who calles himself Lord Loh. (from [EMAIL PROTECTED]) wrote on 7/14/02 1:40 PM: www.phpide.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] PHP 4 broken after Apache upgrade

2002-07-06 Thread Chris Garaffa
Application for this file. MIME Type: application/x-httpd-php File Name: - I downloaded the file via Save File AsŠ and it is the php source for index.php. So do I need to reinstal PHP, or am I just missing something in the config file? -- Chris Garaffa #!/usr/local/lib/php $contact_info[Name

Re: [PHP] PHP 4 broken after Apache upgrade

2002-07-06 Thread Chris Garaffa
That's exactly what I needed to do... Thanks Devrim and Chris for your quick help. AhhhŠ back to coding! -- Chris Garaffa #!/usr/local/lib/php $contact_info[Name] = Chris Garaffa; $contact_info[Email] = [EMAIL PROTECTED]; $contact_info[Work] = [EMAIL PROTECTED]; $contact_info[cell

Re: [PHP] Is there an easy way to divid up HTTP_USER_AGENT?

2002-07-05 Thread Chris Garaffa
as the browser. Read up on Regular Expressions, and you can modify this for any browser/version combo. (adopted from Listing 16.3 in Core PHP Programming by Leon Atkinson) -- Chris Garaffa #!/usr/local/lib/php $contact_info[Name] = Chris Garaffa; $contact_info[Email] = [EMAIL PROTECTED

Re: [PHP] Detecting Browser Type/OS from HTTP_USER_AGENT

2002-06-27 Thread Chris Garaffa
(which standards they support/do not support), and redirected appropriately. I, unfortunately, cannot remember where I saw this script. May have been at www.javascript.com (there are some good ones there). Or, try builder.com's Web Builder Library. -- Chris Garaffa At 9:58 AM -0400 6/27/02

Re: [PHP] alternatives? (Was: Shot in the dark)

2002-06-20 Thread Chris Garaffa
Hello, any chance you could set your clock to the correct date? It says July 6, and is really screwing up my sorting order for mail... thanks On Saturday, July 6, 2002, at 04:49 PM, jtjohnston -- Chris Garaffa [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] Apache/2.0.36 + Win98 + PHP4=Error(31)

2002-06-15 Thread Chris Garaffa
script, but I'm not sure on Windows... Chris Garaffa On 6/15/02 10:24 AM, Prachait Saxena [EMAIL PROTECTED] wrote: Hello !!! I am using Apache/2.0.36 (Win32) DAV/2 on Win98. my server is running very fine when i use PHP4 as a interpreter. but as i use LoadModule to use PHP4 as a modules i