Re: [PHP] Create a numeric hash from a text string?

2005-11-14 Thread Curt Zirzow
On Mon, Nov 14, 2005 at 02:08:08PM -0600, Richard Lynch wrote: > On Mon, November 14, 2005 12:41 pm, Brian Dunning wrote: > > Does anyone know if there's a handy way to create a numeric hash from > > a text string? I'm trying to generate an integer as a sort of quick & > > dirty checksum for text s

Re: [PHP] Template Question

2005-11-14 Thread Robert Cummings
On Mon, 2005-11-14 at 23:42, Leonard Burton wrote: > HI All, > > In your template parsing classes do you put the code for tags in > seperate files or do you have some kind of array or other method of > assigning the action associated with the tag? > > I have been putting the code for the tags in

[PHP] Template Question

2005-11-14 Thread Leonard Burton
HI All, In your template parsing classes do you put the code for tags in seperate files or do you have some kind of array or other method of assigning the action associated with the tag? I have been putting the code for the tags in a dat/tag.dat file and then including the file wherever the tag i

[PHP] Re: Can't use secure file wrappers - Windows

2005-11-14 Thread Chuck Anderson
James Benson wrote: Could use the xampp package or just the openssl & php from it, http://www.apachefriends.org/en/xampp.html Hey thanks. I may give that a try, but I already have two full apache servers loaded on my PC. What I can't figure out is why these secure streams are not regis

Re: [PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread Greg Donald
On Mon, 2005-11-14 at 03:55 -0500, Roman Ivanov wrote: > What features do you need from a framework? Convention over configuration. (Yaml, not XML. ActiveRecord not Propel/Phing.) A persist-able domain model where logic and data are presented in one wrapping. (I don't want to re-assign my data

Re: [PHP] Re: emailing MySQL list not working

2005-11-14 Thread Jasper Bryant-Greene
Bruce Gilbert wrote: Sorry for the newbie question... I did a search on php.net but didn't find my answer. what does \r\n do as opposed to just \n? and yes, I know what \n does. Different platforms have different line-break conventions. \n is a line feed, while \r is a carriage return (the

[PHP] Re: emailing MySQL list not working

2005-11-14 Thread Bruce Gilbert
Sorry for the newbie question... I did a search on php.net but didn't find my answer. what does \r\n do as opposed to just \n? and yes, I know what \n does. On 11/14/05, Richard Lynch <[EMAIL PROTECTED]> wrote: > On Fri, November 11, 2005 9:33 pm, Bruce Gilbert wrote: > > $headers = "From

[PHP] Re: Can't use secure file wrappers - Windows

2005-11-14 Thread James Benson
Could use the xampp package or just the openssl & php from it, http://www.apachefriends.org/en/xampp.html Chuck Anderson wrote: [I've had this posted in the php.windows group for a few days, but I got no replies there.] I have been plugging away at this for some time now and I can not fi

Re: [PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread Esteamedpw
_http://andigutmans.blogspot.com/_ (http://andigutmans.blogspot.com/) Andi talks about the Framework on his Blog. - Clint

[PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread Roman Ivanov
Dan Rossi wrote: Just found this article via phpeclipse.de stating Zend will be including Eclipse framework in their development schedules :) http://www.zend.com/news/zendpr.php?id=109 Id like to know more about this standardized application framework. Me too, considering the fact that I spe

[PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread Roman Ivanov
Dan Rossi wrote: Personally, i am trying to avoid all these frameworks until everyones ideas are collabroated into one as i think they only work for some or for the developers purposes only. What features do you need from a framework? -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] Re: Filtering and Escaping (Was: Select and $_POST)

2005-11-14 Thread Chris Shiflett
GamblerZG wrote: > If you had anything other than $_OCLEAN in an echo and friends, then > you would know you were screwing up. Personally, if I pull something info from the database, then I do not usually sanitize it. Yes, I know it's less secure, but I'm willing to take such (negligible) risk f

Re: [PHP] Printing to a buffer

2005-11-14 Thread Marcus Bointon
On 14 Nov 2005, at 19:01, Richard Lynch wrote: It may not be my final choice whether they download or not, but if a browser doesn't treat: application/octet-stream as a download, and only as a download, then that browser is pretty broken. Letting the user configure their browser for that MIME t

Re: [PHP] mod_rewrite and include paths

2005-11-14 Thread Marcus Bointon
On 14 Nov 2005, at 18:51, Richard Lynch wrote: include_path("/full/path/to/DocumentRoot:" . include_path()); This may not be the right syntax/function to set include_path, but it is a dynamic way to set the include path, from within PHP. Yup, I tried this and it kind-of works, but still leads

[PHP] Re: Filtering and Escaping (Was: Select and $_POST)

2005-11-14 Thread GamblerZG
Richard Lynch wrote: If you had anything other than $_OCLEAN in an echo and friends, then you would know you were screwing up. Personally, if I pull something info from the database, then I do not usually sanitize it. Yes, I know it's less secure, but I'm willing to take such (negligible) ris

[PHP] Can't use secure file wrappers - Windows

2005-11-14 Thread Chuck Anderson
[I've had this posted in the php.windows group for a few days, but I got no replies there.] I have been plugging away at this for some time now and I can not figure out how to get https and ftps as registered streams in my Windows installation of Php (4.4.0). My direct need is to use fopen on

Re: [PHP] [EMAIL PROTECTED]

2005-11-14 Thread Jasper Bryant-Greene
Miles Thompson wrote: Can someone get rid of him? Every time I post, which I admit is not often, I get a bounce. Yeah, same. I think there was some discussion recently regarding it but I don't know what happened. I even tried to go to www.xasamail.com and register an account ale0952 just to

Re: [PHP] What is the purpose of sessions extension?

2005-11-14 Thread GamblerZG
Richard Lynch wrote: But it ain't easy the first time. If you're using DB to store session data, and trying to improve session security, than it ain't easy even the second time. Or the third. In fact, I gave up on that extension before it became easy. After that my session-related code shrun

[PHP] Re: Filtering and Escaping (Was: Select and $_POST)

2005-11-14 Thread Ben Ramsey
On 11/14/05 3:38 PM, Richard Lynch wrote: Perhaps one should use: $_ICLEAN $_OCLEAN for Input and Output. $kosher = '/[^A-Za-z0-9\\',\\.-]/'; $_ICLEAN['first_name'] = preg_replace($kosher, '', $_GET['first_name']; /* more code */ $_OCLEAN['first_name'] = htmlentities($_ICLEAN['first_name']); ech

[PHP] [EMAIL PROTECTED]

2005-11-14 Thread Miles Thompson
Can someone get rid of him? Every time I post, which I admit is not often, I get a bounce. Cheers - Miles -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Walking through a bunch of MySQL Records

2005-11-14 Thread Miles Thompson
Yeah Jim - that's better than mine. Miles At 03:28 PM 11/14/2005, Jim Moseby wrote: > > I have a question. > I want to display a group of records pulled form a MySQL db > in the following > fashion. > > 16 > 27 > 38 > 49 > 510 > > Now I can easily figure ou

Re: [PHP] Walking through a bunch of MySQL Records

2005-11-14 Thread Miles Thompson
First of all - remember results display in a web browser, and if you want to print these you will get results that are not like a normal printed page. Second - here's an approach. Dump all records into an array, you'll have the record count, then selectively fetch elements according to how yo

[PHP] Re: Easiest way to user DomDocument->getElementById()?

2005-11-14 Thread Erik Franzén
I have run into this behavior on several sites: $dom->validate('books.dtd'); But according to the docs, the method it is defined class DOMDocument { bool validate ( void ) } Is the dtd (file?) parameter deprecated? /Erik Just tested, $dom->validate('books.dtd') generates the warning "

RE: [PHP] fopen on windows

2005-11-14 Thread Jay Blanchard
[snip] On Fri, November 11, 2005 2:51 pm, Jay Blanchard wrote: > $theFile = fopen("docs/InstallationInstructionMaster.txt", "r") || > die; Don't use || when you mean 'or' :-) Nor sure it really matters here, but better to follow the crowd and use 'or' here. [/snip] Okie dokie. Found there to be

RE: [PHP] What is the purpose of sessions extension?

2005-11-14 Thread Carlo Razzeto
In my office we found it to be quite quick and easy to write a library which uses PHP session extensions to store all session data into a database (we work in a load balanced environment). We found this to be the best method of dealing with this because we did not need to deal with generating uniqu

Re: [PHP] REQ: DOMDocument needs a way to format XML code

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 2:27 pm, Daevid Vincent wrote: > I have a feature request (and I'm a bit disappointed that this isn't > already > in the DOMDocument, when there are nearly useless methods like > "normalize()")... Ruby has this built in. xmllint has the --format > parameter. But yet PHP's

[PHP] Re: Easiest way to user DomDocument->getElementById()?

2005-11-14 Thread Erik Franzén
I have run into this behavior on several sites: $dom->validate('books.dtd'); But according to the docs, the method it is defined class DOMDocument { bool validate ( void ) } Is the dtd (file?) parameter deprecated? /Erik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

RE: [PHP] fopen on windows

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 3:23 pm, Jay Blanchard wrote: > // Left off the "b" because it ain't binary :) I think you will find this is the crucial difference if you go back to your original and take it out. Your file is text. It's not binary. On Windowz, that matters, for some odd reason. --

Re: [PHP] fopen on windows

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 2:51 pm, Jay Blanchard wrote: > $theFile = fopen("docs/InstallationInstructionMaster.txt", "r") || > die; Don't use || when you mean 'or' :-) Nor sure it really matters here, but better to follow the crowd and use 'or' here. > while(!feof($theFile)){ > $theLine =

[PHP] Easiest way to user DomDocument->getElementById()?

2005-11-14 Thread Erik Franzén
According to the php docs, the method DomDocument->getElementById() will not work unless the document is validated using a DTD (not schema): "According to the DOM standard this requires a DTD which defines the attribute ID to be of type ID. You need to validate your document with DOMDocument->

[PHP] Re: Filtering and Escaping (Was: Select and $_POST)

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 5:18 pm, Chris Shiflett wrote: > Richard Lynch wrote: >> Suppose PHP had a superglobal $_CLEAN which was an empty array. > > This seems like a decent idea, for two reasons: > > 1. Developers don't have to remember to initialize their array, which > offers some protection.

Re: [PHP] Recommendations for the Zend PHP Certification

2005-11-14 Thread Gustavo Narea
Hi, Richard. Richard Lynch wrote: On Sat, November 12, 2005 10:29 am, Gustavo Narea wrote: - AFAIK, there are 3 versions of the Standard SQL (1993, 1999 and 2003), but, Which one am I going to need for this test? I think it would be best to focus on SQL 92 because: A) It's unlikely that

Re: [PHP] What is the purpose of sessions extension?

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 6:59 pm, Jasper Bryant-Greene wrote: > GamblerZG wrote: >> What is the purpose of sessions extension? >> >> The reason I ask is because learning to deal with all its functions, >> ini >> options and quirks took me _much_ more time than writing pure-php >> replacement. (Tha

Re: [PHP] Question about session

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 7:09 pm, Bagus Nugroho wrote: > I have session code which written WindowsXP and It wotk properly as > expected, but when I'm used in Windows 2K, it got error as; > Notice: Undefined index: loginMessage in > C:\CentralData\forms\mainForm.php on line 65 > I'am used Apache 2.

Re: [PHP] url query problem

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 9:12 pm, Imroz wrote: > Hi PHP Gurus > Am new to the php world, I need help to do something. PlZz help > > I have this link HYPERLINK > "http://www.taximauritius.mu/link1.php"http://www.taximauritius.mu/link1 > ..php. > > What I want to do : > > When clicking on the li

Re: [PHP] Create a numeric hash from a text string?

2005-11-14 Thread Richard Lynch
On Mon, November 14, 2005 12:41 pm, Brian Dunning wrote: > Does anyone know if there's a handy way to create a numeric hash from > a text string? I'm trying to generate an integer as a sort of quick & > dirty checksum for text strings. Needs to be a decimal integer, not > hex or otherwise. Any clev

Re: [PHP] Walking through a bunch of MySQL Records

2005-11-14 Thread Richard Lynch
On Mon, November 14, 2005 1:03 pm, Phillip S. Baker wrote: > Greetings all, > > I have a question. > I want to display a group of records pulled form a MySQL db in the > following > fashion. > > 16 > 27 > 38 > 49 > 510 > > Now I can easily figure out how to d

Re: [PHP] Walking through a bunch of MySQL Records

2005-11-14 Thread tg-php
Depending on how strict your requirements are for the table layout, you could always do something like this: Item 1 Item 2 Item 3 Item 4 Item 5 Item 6 Item 7 Item 8 Item 9 Item 10 Each item isn't in it's own , but if they don't have to be, th

Re: [PHP] PHP Install problem

2005-11-14 Thread Richard Lynch
On Mon, November 14, 2005 1:15 pm, russbucket wrote: > On Monday 14 November 2005 10:47, Curt Zirzow wrote: >> On Mon, Nov 14, 2005 at 10:06:17AM -0800, russbucket wrote: >> > Trying to get apache2, php5 and mysql running. get the following >> error >> > when opening phpMyAdmin. Can someone explain

Re: [PHP] Good user comment system?

2005-11-14 Thread Greg Schnippel
If you're looking for a light-weight, threaded discussion script, I can recommend this class from xhawk.net http://www.xhawk.net/projects/discussion/ I like it because I can quickly integrate this into blogs or galleries by just instantiating a new board instance for each object id or article. I

Re: [PHP] emailing MySQL list not working

2005-11-14 Thread Richard Lynch
On Fri, November 11, 2005 9:33 pm, Bruce Gilbert wrote: > $headers = "From: $sender"; > $headers .= "Reply-To: $reply_to"; > $headers .= "Return-Path: $return_path"; > $headers .= "X-Sender: $x_sender"; > $headers .= "X-Mailer: PHP4\n"; //mailer These two may trip so

Re: [PHP] PHP Install problem

2005-11-14 Thread Ben
russbucket said the following on 11/14/2005 11:15 AM: Clicking on the config.inc.php gives following error. Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0 Warning: Unknown: Failed opening '/srv/www/htdocs/phpMyAdmin/config.inc.php' for inclusion (include_pat

RE: [PHP] Walking through a bunch of MySQL Records

2005-11-14 Thread Jim Moseby
> > I have a question. > I want to display a group of records pulled form a MySQL db > in the following > fashion. > > 16 > 27 > 38 > 49 > 510 > > Now I can easily figure out how to display the records as > > 12 > 34 > 56 > 7

Re: [PHP] Re: Create a numeric hash from a text string?

2005-11-14 Thread Brian Dunning
Perfect - thanks guys! :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Recommendations for the Zend PHP Certification

2005-11-14 Thread Richard Lynch
On Sat, November 12, 2005 10:29 am, Gustavo Narea wrote: >- AFAIK, there are 3 versions of the Standard SQL (1993, 1999 and > 2003), but, Which one am I going to need for this test? I think it would be best to focus on SQL 92 because: A) It's unlikely that a significant number of Zend Cert qu

Re: [PHP] PHP Install problem

2005-11-14 Thread russbucket
On Monday 14 November 2005 10:47, Curt Zirzow wrote: > On Mon, Nov 14, 2005 at 10:06:17AM -0800, russbucket wrote: > > Trying to get apache2, php5 and mysql running. get the following error > > when opening phpMyAdmin. Can someone explain what it means. There is an > > include path in php.ini. > >

Re: [PHP] php/linux user groups in the east bay area..

2005-11-14 Thread Richard Lynch
On Sat, November 12, 2005 2:33 pm, bruce wrote: > anybody know of any php/linux/apache user groups in the east bay > (dublin/pleasanton/san ramon/etc...) area? > > need to join one to find other like minded php/linux guys who are into > developing.. You have to do some weeding, but this is pretty

[PHP] Re: Good user comment system?

2005-11-14 Thread Dan Baker
How about good ol' phpbb? http://www.phpbb.com/ DanB "Guy Brom" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > > Anyone familiar with a good user-comment system for PHP, preferably one > that works with adodb and has thread-like design (where users can answer > each ot

Re: [PHP] Printing to a buffer

2005-11-14 Thread Richard Lynch
On Sun, November 13, 2005 4:55 pm, Todd Cary wrote: > Because this was just a test of what will be many "print" lines. The > original application used a file to hold the data and upon request by > the user, it was emailed. But with my client's shared server, files > cannot be opened...a pain. > >

Re: [PHP] Help with Reverse Tree Traversal using Recursion ..

2005-11-14 Thread Greg Schnippel
Richard - Thanks for the helpful suggestion but that won't resolve my problem the way I currently have it written because I'm creating a new, nested each time I loop through: print ""; foreach ($parent as $key => $value) { ... } print ""; So when I tried this, the output was still inverted beca

Re: [PHP] Printing to a buffer

2005-11-14 Thread Richard Lynch
On Sun, November 13, 2005 1:53 pm, Marcus Bointon wrote: > On 13 Nov 2005, at 19:27, Jasper Bryant-Greene wrote: > >>> Many thanks! I did not know that MIME-Type. Change duly made! >> >> You're not suggesting that you actually set the MIME-Type to >> application/force-download, are you? > > I

[PHP] Walking through a bunch of MySQL Records

2005-11-14 Thread Phillip S. Baker
Greetings all, I have a question. I want to display a group of records pulled form a MySQL db in the following fashion. 16 27 38 49 510 Now I can easily figure out how to display the records as 12 34 56 78 910 But

[PHP] Re: Zend + Eclipse + Standized Framework

2005-11-14 Thread GamblerZG
Dan Rossi wrote: Personally, i am trying to avoid all these frameworks until everyones ideas are collabroated into one as i think they only work for some or for the developers purposes only. What features do you need from a framework? -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] Printing to a buffer

2005-11-14 Thread Richard Lynch
On Sun, November 13, 2005 8:20 am, Marcus Bointon wrote: > > On 13 Nov 2005, at 00:17, Jasper Bryant-Greene wrote: > >>> seem to do that. I just tried "application/text" since I use >>> "application/pdf" for other applications. >> >> Whatever it's giving the user the ability to do, it's probably >

[PHP] Re: Create a numeric hash from a text string?

2005-11-14 Thread Dan Baker
Quick-n-easy: int crc32 ( string str ) -- make sure to read the manual about the unsigned/signed issue. DanB "Brian Dunning" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Does anyone know if there's a handy way to create a numeric hash from a > text string? I'm trying to gen

Re: [PHP] Create a numeric hash from a text string?

2005-11-14 Thread Curt Zirzow
On Mon, Nov 14, 2005 at 10:41:53AM -0800, Brian Dunning wrote: > Does anyone know if there's a handy way to create a numeric hash from > a text string? I'm trying to generate an integer as a sort of quick & > dirty checksum for text strings. Needs to be a decimal integer, not > hex or otherwi

Re: [PHP] mod_rewrite and include paths

2005-11-14 Thread Richard Lynch
On Sun, November 13, 2005 4:05 pm, Marcus Bointon wrote: > This seems like a simple problem... Maybe there should be a simple solution... :-) > I have a rewrite like this: > > RewriteRule ^x/([0-9]+) x.php?x=$1 [PT,L] > > This maps a url like http://www.example.com/x/123 to http:// > www.example.

[PHP] Create a numeric hash from a text string?

2005-11-14 Thread Brian Dunning
Does anyone know if there's a handy way to create a numeric hash from a text string? I'm trying to generate an integer as a sort of quick & dirty checksum for text strings. Needs to be a decimal integer, not hex or otherwise. Any clever ideas appreciated. :) -- PHP General Mailing List (h

Re: [PHP] PHP Install problem

2005-11-14 Thread Curt Zirzow
On Mon, Nov 14, 2005 at 10:06:17AM -0800, russbucket wrote: > Trying to get apache2, php5 and mysql running. get the following error when > opening phpMyAdmin. Can someone explain what it means. There is an include > path in php.ini. I think you forgot to include the error message. curt. -- -

Re: [PHP] Output_Buffer problem

2005-11-14 Thread Richard Lynch
On Sun, November 13, 2005 4:39 pm, Todd Cary wrote: > My client has switched to a shared server, so direct access to the > php.ini is not availble. Our calendar program expects to have > output_buffering set to On ("1"). > > Currently, I get the expected error of > > Warning: Cannot modify header

Re: [PHP] Good user comment system?

2005-11-14 Thread Richard Lynch
On Sun, November 13, 2005 7:59 pm, Guy Brom wrote: > Anyone familiar with a good user-comment system for PHP, preferably > one that > works with adodb and has thread-like design (where users can answer > each > other). It's not threaded, but the User Contributed notes system on http://php.net shou

Re: [PHP] Help with Reverse Tree Traversal using Recursion ..

2005-11-14 Thread Richard Lynch
On Mon, November 14, 2005 7:46 am, Greg Schnippel wrote: > I have a large data tree that I wanted to display in an outline > format. I used a textbook tree recursion function to go through the > data and display it as nested unordered lists: > > function outputTree($id) { > >if (checkChildO

[PHP] PHP Install problem

2005-11-14 Thread russbucket
Trying to get apache2, php5 and mysql running. get the following error when opening phpMyAdmin. Can someone explain what it means. There is an include path in php.ini. -- Russ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] dependable combo boxes with mysql database (Solved)

2005-11-14 Thread Bhoomi Vora
I have got it done. Below is the code: - Service Select Service"); } else { print("$ser"); } ?> Product $a"); } else { print("$prd"); } ?> Nature of Problem Select Problem

Re: [PHP] php Slow with Mac OS X 10.4

2005-11-14 Thread Nicolas Ross
I've finally narrow-it down and found a solution. After much, much googeling, trying and error on my test machine and my xserve running mac os x 10.4, I've found out that apache2 was shipped with mac os X 10.4 server (server only). I decided to compile my own php (as allways) againts this apache

Re: [PHP] split or explode quoted strings

2005-11-14 Thread Robin Vickery
On 11/14/05, Ördögh László <[EMAIL PROTECTED]> wrote: > Hello, > > I would like to split or explode strings in a way that > quoted strings inside the strings should remain. > e.g.: > > "first second \"third third\" fourth \"fifth fifth fifth\"" > > after the split I need: > > "first" > "second" > "

Re: [PHP] split or explode quoted strings

2005-11-14 Thread Chris Shiflett
Ördögh László wrote: I would like to split or explode strings in a way that quoted strings inside the strings should remain. e.g.: "first second \"third third\" fourth \"fifth fifth fifth\"" after the split I need: "first" "second" "third third" "fourth" "fifth fifth fifth" I love explode(),

[PHP] split or explode quoted strings

2005-11-14 Thread Ördögh László
Hello, I would like to split or explode strings in a way that quoted strings inside the strings should remain. e.g.: "first second \"third third\" fourth \"fifth fifth fifth\"" after the split I need: "first" "second" "third third" "fourth" "fifth fifth fifth" Is there a simple way to achieve

RE: [PHP] php session in ie

2005-11-14 Thread Ford, Mike
On 11 November 2005 18:47, sunaram patir wrote: > array(1) { ["PHPSESSID"]=> string(32) > "337a44c0d6c9ed3cf4ba4e97d707589e" } is returned by firefox on calling > var_dump($_COOKIE). NULL in ie. If the very same piece of PHP produces different results in different browsers, this *MUST* be due t

RE: [PHP] fopen on windows

2005-11-14 Thread Jay Blanchard
[snip] You need "or" not || here. The operator priorities are such that the above means ... which assigns the result of fopen() to $theFile, and then executes die if it's false -- which is much more satisfactory. ;) [/snip] Originally I did not have any '||' or 'or' in the conditional check, with

RE: [PHP] fopen on windows

2005-11-14 Thread Ford, Mike
On 11 November 2005 21:21, Nathan Tobik wrote: > I've always used: > > fopen("C:\\dir\\dir\\file.txt"); > > on windows, I'm not sure how PHP interprets the slashes internally > though... On Windows, "/" in filenames is internally translated by PHP to "\" -- which means you can write code that

RE: [PHP] fopen on windows

2005-11-14 Thread Ford, Mike
On 11 November 2005 20:52, Jay Blanchard wrote: > $theFile = fopen("docs/InstallationInstructionMaster.txt", "r") || > die; You need "or" not || here. The operator priorities are such that the above means $theFile = (fopen("docs/InstallationInstructionMaster.txt", "r") || die); which assign

[PHP] Virtual includes of PHP into SSI pages.

2005-11-14 Thread Neil Hoggarth
Hi Folks, I'm attempting to diagnose an apparent problem with my Apache/PHP server setup. The platform is SPARC Solaris 9. I'm running Apache httpd 2.0.55 and PHP 4.4.1, built from NetBSD pkgsrc. I have a user who has .shtml (server side include) pages which include PHP fragments using direct

[PHP] Help with Reverse Tree Traversal using Recursion ..

2005-11-14 Thread Greg Schnippel
I have a large data tree that I wanted to display in an outline format. I used a textbook tree recursion function to go through the data and display it as nested unordered lists: function outputTree($id) { if (checkChildObjectExists($id)) { print ""; $child =

[PHP] Changes from 5.0.4 => 5.0.5 (_SERVER variabes not defined).

2005-11-14 Thread Sean O Sullivan
Hello, Was upgrading PHP-5.0.3 => 5.0.5 Apache version : httpd-2.0.46-54.ent Distro : RHEL3 U2 configure switches : ./configure --with-zlib --without-gd --without-gdbm --with-oracle=/opt/oracle/app/oracle/product/9.2.0/ --enable-sigchild --enable-force-cgi-redirect --enable-memory-limit --enab

Re: [PHP] file get contents

2005-11-14 Thread Richard Heyes
Ross wrote: Hello, I have been usng the file_get_contents function to insert a (repeating) part of my code $lines = file_get_contents('../shared/acessibility_box.htm'); echo "$lines"; In this file I have the a self submitting link A The problem I think is this code is inserted afte

[PHP] PHP / MySQL Authentication class

2005-11-14 Thread Alan Milnes
Can anyone point me to a good User Authentication class written in PHP (Version 5 preferably) that uses MySQL as the backend. If the output is valid XHTML then even better. There are lots of hits on Google but I need some help sorting the wheat from the chaff. It's for a hobbyist site so I'm

Re: [PHP] file get contents

2005-11-14 Thread Richard Davey
Hi Ross, Monday, November 14, 2005, 9:44:45 AM, you wrote: > $lines = file_get_contents('../shared/acessibility_box.htm'); > In this file I have the a self submitting link > A > The problem I think is this code is inserted after the page headers have > been set. And so the line just generates a

[PHP] Re: file get contents

2005-11-14 Thread Ross
Ok...got it now. Thanks for the tip max. It was that there was no parsing with the file_get_contents function. Had another minor error but helped that I knew include() was the way to go. R. ""Ross"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I have been usng the

[PHP] file get contents

2005-11-14 Thread Ross
Hello, I have been usng the file_get_contents function to insert a (repeating) part of my code $lines = file_get_contents('../shared/acessibility_box.htm'); echo "$lines"; In this file I have the a self submitting link A The problem I think is this code is inserted after the page head

[PHP] Re: sending/notifying a server process

2005-11-14 Thread tony yau
Thanks Richard, the server app was in another box from the database and we thought there may be security issues behind the router etc. we have now put the server app in the same box as the database and will use php UDP to notify the app. thanks for your help Tony "Richard Lynch" <[EMAIL PROTECT

Re: [PHP] PHP / MySQL Authentication class

2005-11-14 Thread Jochem Maas
Alan Milnes wrote: Can anyone point me to a good User Authentication class written in PHP (Version 5 preferably) that uses MySQL as the backend. If the output is valid XHTML then even better. There are lots of hits on Google but I need some help sorting the wheat from the chaff. it might hel