Re: [PHP] Re: Array Sorting Headaches

2004-04-19 Thread Burhan Khalid
Torsten Roehr wrote: Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Greetings everyone : Having a hard time with this one. I have a multi-dim array $foo[$x][$y]['key'], where $x and $y are numeric. Here is some sample data [ snipped ] I need to filter the results so

[PHP] Re: Why are Session Variables carried over into a brand new browser window?

2004-04-19 Thread Rob Adams
Bob Bruce - Programmer [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] A target=blank href=http://www.themuralsofwinnipeg.com/Mpages/index.php?action=gotomuralm uralid=179 so this opens a new browser window, but it is inheriting the session values from the browser window that

Re: [PHP] Re: Array Sorting Headaches

2004-04-19 Thread Torsten Roehr
Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Torsten Roehr wrote: Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Greetings everyone : Having a hard time with this one. I have a multi-dim array $foo[$x][$y]['key'], where $x and $y

Re: [PHP] Re: php accelerator for php5rc1 ?

2004-04-19 Thread David Herring
Hi Thomas, Thanks for the correction. My current undertanding is that zend-acelerator, phpa, turck-mmache and apc do not support PHP5.0rc1 ? Is there any accelerator that does ? Thx dave Thomas Seifert wrote: On Sat, 17 Apr 2004 19:01:21 +0100 [EMAIL PROTECTED] (David Herring) wrote: The

Re: [PHP] Re: Array Sorting Headaches

2004-04-19 Thread Burhan Khalid
Torsten Roehr wrote: Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Torsten Roehr wrote: Burhan Khalid [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Greetings everyone : Having a hard time with this one. I have a multi-dim array $foo[$x][$y]['key'], where

Re: [PHP] Re: Array Sorting Headaches

2004-04-19 Thread Torsten Roehr
Well, it does some sorting, but not quite what I'm after :( I've managed to get the list so that all the (sub) entries are sorted in the correct order. Now its just a matter of finding the highest expire date for /each/ domain, and delete the other entries for that domain. So, in the end,

Re: [PHP] Re: php accelerator for php5rc1 ?

2004-04-19 Thread Elfyn McBratney
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello David On Monday 19 Apr 2004 08:34, David Herring wrote: Hi Thomas, Thanks for the correction. My current undertanding is that zend-acelerator, phpa, turck-mmache and apc do not support PHP5.0rc1 ? Is there any accelerator that does ?

[PHP] C or C++

2004-04-19 Thread Brent Clark
Hi All Just a quick question, is PHP written in C or C++. Kind Regards Brent Clark

Re: [PHP] Re: php accelerator for php5rc1 ?

2004-04-19 Thread Thomas Seifert
Hi David, I'm not quite sure if its worth the trouble to officially support a php-version which is not yet stable. I remember that, at least, turck-mmcache has unofficial support for php5. thomas David Herring ([EMAIL PROTECTED]) schrieb: Hi Thomas, Thanks for the correction. My current

Re: [PHP] Regexp hyperlink

2004-04-19 Thread Martin Visser
Thanks alot! It's indeed an ingenious way of doing it! Martin Richard Harb schreef: A while ago I've been looking at some piece of code of the tikiwiki project to see how they did some of their magic... Basically they run through the whole text and if they found something that was translated

Re: [PHP] Re: Array Sorting Headaches

2004-04-19 Thread Burhan Khalid
Torsten Roehr wrote: Well, it does some sorting, but not quite what I'm after :( I've managed to get the list so that all the (sub) entries are sorted in the correct order. Now its just a matter of finding the highest expire date for /each/ domain, and delete the other entries for that domain.

php-general Digest 19 Apr 2004 12:20:42 -0000 Issue 2714

2004-04-19 Thread php-general-digest-help
php-general Digest 19 Apr 2004 12:20:42 - Issue 2714 Topics (messages 183785 through 183799): Re: session var puzzle 183785 by: Tom Rogers 183787 by: Larry Brown Problems compiling a DSO in BSD/OS 5.1 183786 by: The Doctor Re: why doesn't this work ? 183788

Re: [PHP] Re: Array Sorting Headaches

2004-04-19 Thread Torsten Roehr
OK, so it's just the other way round - I see. Instead of deleting the entry with the highest expiry date we delete all the others: foreach ($foo as $key = $value) { $tempArray = array(); foreach ($value as $subkey = $subvalue) { // add

[PHP] Best practice for creating mysql database structure for menus navigation

2004-04-19 Thread dr. zoidberg
Hello, What will be the best database structure for creating web site navigation, menus with submenus (unlimited levels). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Best practice for creating mysql database structure for menus navigation

2004-04-19 Thread Torsten Roehr
Dr. Zoidberg [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, What will be the best database structure for creating web site navigation, menus with submenus (unlimited levels). I'd suggest 2 id columns: CREATE TABLE menu ( menuItemID int(11) NOT NULL auto_increment,

[PHP] Re: C or C++

2004-04-19 Thread Eric Bolikowski
Brent Clark [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi All Just a quick question, is PHP written in C or C++. Kind Regards Brent Clark It is written i C. One hint is that PHP is procedural, and the same is C. Maybe some beautieful day someone willl write a C++ version :)

[PHP] Help with shorting this please

2004-04-19 Thread Don Myers
PHP gurus. I know this can be made shorter but I can't seem to figure out how. This is a PHP CLI script I use to go through a directory listing a act upon file matching the same prefix and/or suffix if supplied. This is the code I use now. // set up the prefix and/or suffix if I want to match on

[PHP] Why NNTP is not default protocol for php groups

2004-04-19 Thread T. H. Grejc
Hello, I've seen this subject before, but never really got any answer. PHP have news server at news.php.net but it is 'always' down and it is only a mailing list mirror, so some messages get lost or get 'out of thread'. I dont have to say that you will save your self, and to us, subscribers a

Re: [PHP] addslashes vs. mysql_real_escape_string

2004-04-19 Thread Hardik Doshi
Thank you John. Currently i am using PEAR DB abstration layer. Which function should i use to escape the ' character? There are couple of functions in the PEAR DB documentation so i don't know which one should i use. Hardik --- John W. Holmes [EMAIL PROTECTED] wrote: Richard Davey wrote:

Re: [PHP] Best practice for creating mysql database structure for menus navigation

2004-04-19 Thread Marco Schuler
Hi Am Mo, 2004-04-19 um 15.22 schrieb dr. zoidberg: Hello, What will be the best database structure for creating web site navigation, menus with submenus (unlimited levels). If you are fine with oop, than maybe http://pear.php.net/package/DB_NestedSet would be worth a look. Renderers

Re: [PHP] addslashes vs. mysql_real_escape_string

2004-04-19 Thread John W. Holmes
From: Hardik Doshi [EMAIL PROTECTED] Currently i am using PEAR DB abstration layer. Which function should i use to escape the ' character? There are couple of functions in the PEAR DB documentation so i don't know which one should i use. I don't use PEAR DB, but it looks like quoteSmart() is

Re: [PHP] Help with shorting this please

2004-04-19 Thread Kelly Hallman
Apr 19 at 10:03am, Don Myers wrote: PHP gurus. I know this can be made shorter but I can't seem to figure out how. This is a PHP CLI script I use to go through a directory listing a act upon file matching the same prefix and/or suffix if supplied. This is the code I use now. First of all, I

[PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Marco Schuler
Hi I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? Thanks for your help! -- Regards Marco -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Help with shorting this please

2004-04-19 Thread Curt Zirzow
* Thus wrote Don Myers ([EMAIL PROTECTED]): PHP gurus. I know this can be made shorter but I can't seem to figure out how. This is a PHP CLI script I use to go through a directory listing a act upon file matching the same prefix and/or suffix if supplied. This is the code I use now. //

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread John Nichel
Marco Schuler wrote: Hi I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? Thanks for your help! You can't with PHP. -- *** *

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread John W. Holmes
From: Marco Schuler [EMAIL PROTECTED] I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? You don't. I decide when I want to go back and/or refresh, not you. You need to program your application

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Marco Schuler
Hi Am Mo, 2004-04-19 um 17.18 schrieb John Nichel: Marco Schuler wrote: Hi I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? Thanks for your help! You can't with PHP. It's

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Marco Schuler
Hi Am Mo, 2004-04-19 um 17.25 schrieb John W. Holmes: From: Marco Schuler [EMAIL PROTECTED] I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? You don't. I decide when I want to go back

Re: [PHP] Why NNTP is not default protocol for php groups

2004-04-19 Thread Curt Zirzow
* Thus wrote T. H. Grejc ([EMAIL PROTECTED]): Hello, I've seen this subject before, but never really got any answer. PHP have news server at news.php.net but it is 'always' down and it is only a mailing list mirror, so some messages get lost or get 'out of thread'. I've never had any

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Elfyn McBratney
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Marco, On Monday 19 Apr 2004 16:39, Marco Schuler wrote: Hi Am Mo, 2004-04-19 um 17.18 schrieb John Nichel: Marco Schuler wrote: Hi I want to prevent the user to use the browser's back-/refresh-button in my multipage

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread John Nichel
Marco Schuler wrote: Hi Am Mo, 2004-04-19 um 17.25 schrieb John W. Holmes: From: Marco Schuler [EMAIL PROTECTED] I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? You don't. I decide when I want

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread James E Hicks III
On Monday 19 April 2004 12:22 pm, Marco Schuler wrote: Hi I want to prevent the user to use the browser's back-/refresh-button in my multipage registration form (as well as in other forms). How can I do this? If you look back in the archives of this list you will see the way that I did

RE: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Hawkes, Richard
Yes, I think unconstructive e-mails are a little rude aren't they? So here's a bit of JavaScript that removes everything! I'll let you fiddle with the settings: html head titleExample/title script language=JavaScript function openWindow(webPage) { window.open (webPage, 'helpwindow',

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Arthur Pelkey
on any current browser simply removing the button from view, does not remove the function, but i guess it is a start Hawkes, Richard wrote: Yes, I think unconstructive e-mails are a little rude aren't they? So here's a bit of JavaScript that removes everything! I'll let you fiddle with the

RE: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Chris W. Parker
Hawkes, Richard mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 8:31 AM said: Yes, I think unconstructive e-mails are a little rude aren't they? i agree... but i didn't see any unconstructive emails. did you? So here's a bit of JavaScript that removes everything! I'll let you fiddle

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread John Nichel
Hawkes, Richard wrote: Yes, I think unconstructive e-mails are a little rude aren't they? As opposed to asking an offtopic question to which there are hundreds of answers to if one would just ask on the right list or, (perish the thought) go to http://www.google.com? So here's a bit of

Re: [PHP] How to disable browser's back- and refresh-Button

2004-04-19 Thread Richard Davey
Hello Marco, Monday, April 19, 2004, 5:22:26 PM, you wrote: MS I want to prevent the user to use the browser's back-/refresh-button in MS my multipage registration form (as well as in other forms). How can I do MS this? There is NO foolproof way to do this. You can open your form in a new

Re: [PHP] addslashes vs. mysql_real_escape_string

2004-04-19 Thread Justin Patrin
John W. Holmes wrote: From: Hardik Doshi [EMAIL PROTECTED] Currently i am using PEAR DB abstration layer. Which function should i use to escape the ' character? There are couple of functions in the PEAR DB documentation so i don't know which one should i use. I don't use PEAR DB, but it looks

Re: [PHP] Why NNTP is not default protocol for php groups

2004-04-19 Thread Justin Patrin
Curt Zirzow wrote: * Thus wrote T. H. Grejc ([EMAIL PROTECTED]): Hello, I've seen this subject before, but never really got any answer. PHP have news server at news.php.net but it is 'always' down and it is only a mailing list mirror, so some messages get lost or get 'out of thread'. I've

[PHP] oo question

2004-04-19 Thread Chris W. Parker
hi. i've recently realized that the little oo code i've written is actually not very oo at all. it's more like procedural code wrapped in a class. armed with my new knowledge i'm in the process of modifying my current classes to be more oo (or what i like to this is more oo). so i'm going to ask

RE: [PHP] oo question

2004-04-19 Thread Edward Peloke
so, would you add a function to return all if you wish? I am finally breaking my habits with php and trying the oo approach also. So, this: function Customer($customer_id = 0) doesn't always set the customer_id to 0 even when you pass one in? Eddie -Original Message- From: Chris W.

[PHP] How to disable browser's back button, refresh button and multiple clicks of submit buttons using PHP.

2004-04-19 Thread James E Hicks III
This is the only way that I have been able to insure that the users can not use any of the bad buttons (back,refresh,double-click submit). The java-script solutions will only work for users that have java-script enabled. I put the following in my authenticate.php which is included at the top of

[PHP] Re: oo question

2004-04-19 Thread Torsten Roehr
so although the second class has a lot more code in it, it also allows me to change what happens behinds the scenes (i.e. variable names) more easily. for example the customer will always have a first_name but i may not always want to use $fname to represent it within the class. this revised

RE: [PHP] oo question

2004-04-19 Thread Chris W. Parker
Edward Peloke mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 10:49 AM said: this: function Customer($customer_id = 0) doesn't always set the customer_id to 0 even when you pass one in? no. that is the default value for a function if *no* value is passed in. chris. -- PHP General

RE: [PHP] oo question

2004-04-19 Thread Chris W. Parker
Chris W. Parker on Monday, April 19, 2004 11:03 AM said: Edward Peloke mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 10:49 AM said: this: function Customer($customer_id = 0) doesn't always set the customer_id to 0 even when you pass one in? no. that is the default value

RE: [PHP] Re: oo question

2004-04-19 Thread Chris W. Parker
Torsten Roehr mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 10:46 AM said: the second approach is definitely much, much better and the right way to go. But what exactly is your QUESTION? oh yeah.. umm... i guess at this point it would be which is better?... as i was writing the email

RE: [PHP] Re: oo question

2004-04-19 Thread Edward Peloke
Chris, Are you thinking of having a class like this for each of the tables in your db? I am trying to build myself some reusable code and am trying to think through the best way to do it. I have started playing with java and hibernate and it has classes for each table so I was thinking of doing

Re: [PHP] oo question

2004-04-19 Thread Jordi Canals
Chris W. Parker wrote: hi. i've recently realized that the little oo code i've written is actually not very oo at all. it's more like procedural code wrapped in a class. armed with my new knowledge i'm in the process of modifying my current classes to be more oo (or what i like to this is more

Re: [PHP] Re: oo question

2004-04-19 Thread Torsten Roehr
Chris W. Parker [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Torsten Roehr mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 10:46 AM said: the second approach is definitely much, much better and the right way to go. But what exactly is your QUESTION? oh yeah.. umm... i guess

Re: [PHP] How to disable browser's back button, refresh button and multiple clicks of submit buttons using PHP.

2004-04-19 Thread Marco Schuler
Hi James Thanks for your realy constructive post! I'll try that out and maybe come back with some questions (hopefully not) :-) -- Regards Marco Am Mo, 2004-04-19 um 19.42 schrieb James E Hicks III: This is the only way that I have been able to insure that the users can not use any of the

[PHP] PHP and HTTP requests

2004-04-19 Thread Aleksei Ivanov
Hi, I realize it's a stupid question but I need a simple solution.. I'd like to get contence from script-generated webpage (I send a regquest via get or post method to a page and it generates a response page - how do get that page as a string? Get the source of the page). It's obvious that it

RE: [PHP] Re: oo question

2004-04-19 Thread Michal Migurski
One personal suggestion: you could directly put the code from initialize_customer() into the constructor. but i'm thinking that i might, at some point, want to use that method after the object has been instantiated. i can't think of a specific case, but i'm only imagining that it's

Re: [PHP] PHP and HTTP requests

2004-04-19 Thread Michal Migurski
I realize it's a stupid question but I need a simple solution.. I'd like to get contence from script-generated webpage (I send a regquest via get or post method to a page and it generates a response page - how do get that page as a string? Get the source of the page). It's obvious that it

Re: [PHP] PHP and HTTP requests

2004-04-19 Thread Richard Davey
Hello Aleksei, Monday, April 19, 2004, 7:39:43 PM, you wrote: AI I realize it's a stupid question but I need a simple AI solution.. I'd like to get contence from script-generated webpage AI (I send a regquest via get or post method to a page and it AI generates a response page - how do get that

Re: [PHP] PHP and HTTP requests

2004-04-19 Thread John W. Holmes
From: Aleksei Ivanov [EMAIL PROTECTED] I realize it's a stupid question but I need a simple solution.. I'd like to get contence from script-generated webpage (I send a regquest via get or post method to a page and it generates a response page - how do get that page as a string? Get the

[PHP] Re: PHP and HTTP requests

2004-04-19 Thread Torsten Roehr
Aleksei Ivanov [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I realize it's a stupid question but I need a simple solution.. I'd like to get contence from script-generated webpage (I send a regquest via get or post method to a page and it generates a response page - how do get

[PHP] PHP Web Hosting

2004-04-19 Thread Martin, Stanley G [Contractor for Sprint]
Some time ago I put up a web site on Domehost.com. Everything has been working great and I had a couple questions for their Tech Support but haven't received any feedback from them, they don't answer their phones. Also, it is stated on their site that a company called Wintek Computing took them

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Adam Voigt
Not sure about that particular host, but if your looking for one with good features, and high reliability, I would suggest Spenix. http://www.spenix.com I asked them a question about my hosting plan (not even a support request) at 9PM and was sent a response within 5 minutes. Very good support,

[PHP] Pear Layout question

2004-04-19 Thread Chris
I asked this on the pear list and haven't received an answer. Hopefully someone here can help. I want to move to pear for some of my development/consulting needs. I have only been exposed to pear for a script that I myself purchased, so I am not that familiar with it. I know that pear is already

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Edward Peloke
I use www.ht-tech.net very good and reliable. Eddie -Original Message- From: Adam Voigt [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 3:21 PM To: Martin, Stanley G [Contractor for Sprint] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP Web Hosting Not sure about that particular

Re: [PHP] oo question

2004-04-19 Thread Kelly Hallman
Chris, Apr 19 at 10:33am, Chris W. Parker wrote: my question has to do with abstraction (i think that's the word). I think what you're talking about here is encapsulation. And yes, you are correct to point out that the second approach allows the more encapsulation of the object's data. Using

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Arthur Pelkey
any hosting provider that gives me a 500 internal server error when i try to navigate to their packages, will get overlooked by me ;) Edward Peloke wrote: I use www.ht-tech.net very good and reliable. Eddie -Original Message- From: Adam Voigt [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Edward Peloke
I just clicked the link and get there fine... -Original Message- From: Arthur Pelkey [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 3:34 PM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP Web Hosting any hosting provider that gives me a 500 internal server error when i try to

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Arthur Pelkey
sometimes it `loads` a blank white page, when i refresh I get a 500 internal server error, tried 20-25 times in a row, oh well Edward Peloke wrote: I just clicked the link and get there fine... -Original Message- From: Arthur Pelkey [mailto:[EMAIL PROTECTED] Sent: Monday, April 19,

[PHP] Re: Pear Layout question

2004-04-19 Thread Torsten Roehr
Chris [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I asked this on the pear list and haven't received an answer. Hopefully someone here can help. I want to move to pear for some of my development/consulting needs. I have only been exposed to pear for a script that I myself

Re: [PHP] Pear Layout question

2004-04-19 Thread Adrian Madrid
Chris wrote: I asked this on the pear list and haven't received an answer. Hopefully someone here can help. I want to move to pear for some of my development/consulting needs. I have only been exposed to pear for a script that I myself purchased, so I am not that familiar with it. I know that

Re: [PHP] PHP Web Hosting

2004-04-19 Thread John Nichel
Arthur Pelkey wrote: any hosting provider that gives me a 500 internal server error when i try to navigate to their packages, will get overlooked by me ;) A, comeon. Where's you sense of adventure? :o :) -- *** * _ __

RE: [PHP] Re: oo question

2004-04-19 Thread Kelly Hallman
Apr 19 at 11:06am, Chris W. Parker wrote: Torsten Roehr mailto:[EMAIL PROTECTED] One personal suggestion: you could directly put the code from initialize_customer() into the constructor. but i'm thinking that i might, at some point, want to use that method after the object has been

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Arthur Pelkey
I am all for adventure when money goes into my wallet, the same cannot be said for the opposite ;) John Nichel wrote: Arthur Pelkey wrote: any hosting provider that gives me a 500 internal server error when i try to navigate to their packages, will get overlooked by me ;) A, comeon.

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Vail, Warren
Guess you're not married ;-) Warren Vail -Original Message- From: Arthur Pelkey [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 12:54 PM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP Web Hosting I am all for adventure when money goes into my wallet, the same cannot be said

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Daniel Clark
I'm using www.phpwebhosting.com On Mon, 2004-04-19 at 15:14, Martin, Stanley G [Contractor for Sprint] wrote: Some time ago I put up a web site on Domehost.com. Everything has been working great and I had a couple questions for their Tech Support but haven't received any feedback from

Re: [PHP] PHP Web Hosting

2004-04-19 Thread John Nichel
Greg Donald wrote: Your signature is twice the rfc1855 suggested limit. http://www.faqs.org/rfcs/rfc1855.html - If you include a signature keep it short. Rule of thumb is no longer than 4 lines. And the RFC1885 'guidelines' are also almost 10 years old. I think most people today have a fast

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Richard Davey
Hello Stanley, Monday, April 19, 2004, 8:14:25 PM, you wrote: MSGCfS Some time ago I put up a web site on Domehost.com. Everything has been MSGCfS working great and I had a couple questions for their Tech Support but MSGCfS haven't received any feedback from them, they don't answer their

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Martin, Stanley G [Contractor for Sprint]
I've received a number of suggestions as to where I should go to for my web hosting but it doesn't seem that anyone has any experience with Domehost. This brings up another question; transferring my Domain name. If I do move to another hosting site, can I take my domain name with me? Stanley G.

[PHP] Finding Screen Size

2004-04-19 Thread I.A. Gray
Hello. I know it's easy to find the screen res of a user from javascript- but I want to let my PHP script know what the resolution is. Is this possible? I would like the easiest way possible- I'd rather not resort to sessions/cookies. Is there a way to make a variable available to PHP? I find

Re: [PHP] PHP Web Hosting

2004-04-19 Thread John Nichel
Martin, Stanley G [Contractor for Sprint] wrote: I've received a number of suggestions as to where I should go to for my web hosting but it doesn't seem that anyone has any experience with Domehost. This brings up another question; transferring my Domain name. If I do move to another hosting site,

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Julien Wadin
Of course You just have to change the DNS of your domain Your hosteur MUST let you change -Message d'origine- De : Martin, Stanley G [Contractor for Sprint] [mailto:[EMAIL PROTECTED] Envoye : lundi 19 avril 2004 21:35 A : Richard Davey; [EMAIL PROTECTED] Objet : RE: [PHP] PHP Web Hosting

Re: [PHP] Why NNTP is not default protocol for php groups

2004-04-19 Thread Red Wingate
Same here, just installed some Newsgroup Software and everything works just fine for me :-) -- red Justin Patrin wrote: Curt Zirzow wrote: * Thus wrote T. H. Grejc ([EMAIL PROTECTED]): Hello, I've seen this subject before, but never really got any answer. PHP have news server at

Re: [PHP] Why NNTP is not default protocol for php groups

2004-04-19 Thread Red Wingate
Same here, just installed some Newsgroup Software and everything works just fine for me :-) -- red Justin Patrin wrote: Curt Zirzow wrote: * Thus wrote T. H. Grejc ([EMAIL PROTECTED]): Hello, I've seen this subject before, but never really got any answer. PHP have news server at

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Greg Donald
On Mon, 2004-04-19 at 15:19, John Nichel wrote: And the RFC1885 'guidelines' are also almost 10 years old. I think most people today have a fast enough connection to handle the 500+/- bytes of my signatureeven if they're still on dial-up. Of course, I could be mistaken and there may

Re: [PHP] Finding Screen Size

2004-04-19 Thread Larry E . Ullman
I know it's easy to find the screen res of a user from javascript- but I want to let my PHP script know what the resolution is. Is this possible? I would like the easiest way possible- I'd rather not resort to sessions/cookies. Is there a way to make a variable available to PHP? I find the

Re: [PHP] PHP Web Hosting

2004-04-19 Thread John Nichel
Greg Donald wrote: On Mon, 2004-04-19 at 15:19, John Nichel wrote: And the RFC1885 'guidelines' are also almost 10 years old. I think most people today have a fast enough connection to handle the 500+/- bytes of my signatureeven if they're still on dial-up. Of course, I could be mistaken

Re: [PHP] Pear Layout question

2004-04-19 Thread Kelly Hallman
Apr 19 at 7:30pm, Chris wrote: I would like to be able to give my customers a zip file with my script and all the needed pear modules. I've looked over the documentation and I did not see anything touching on this. PEAR --DB --HTTP --SOAP --NET ... As long as the directory containing

RE: [PHP] Finding Screen Size

2004-04-19 Thread electroteque
I dont want to start any flames, but there could be a possibility http://sharkysoft.com/tutorials/jsa/content/037.html -Original Message- From: I.A. Gray [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 20, 2004 6:36 AM To: [EMAIL PROTECTED] Subject: [PHP] Finding Screen Size

RE: [PHP] Finding Screen Size

2004-04-19 Thread electroteque
actually this could also work http://www.faqts.com/knowledge_base/view.phtml/aid/131 -Original Message- From: electroteque [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 20, 2004 7:00 AM To: I.A. Gray; [EMAIL PROTECTED] Subject: RE: [PHP] Finding Screen Size I dont want to start

[PHP] Cookies

2004-04-19 Thread Fidencio Monroy
Hi all, is there a way to check is a browser is accepting my cookies? Tnx

Re: [PHP] PHP Web Hosting

2004-04-19 Thread Russell P Jones
http://www.networkeleven.com I have been using these folks for about a year and a half now. They have done numerous custom builds for me and will do it within 15 minutes of your request. Pretty amazing customer service. Russ Jones On Mon, 19 Apr 2004, Daniel Clark wrote: I'm using

RE: [PHP] Cookies

2004-04-19 Thread Chris W. Parker
Fidencio Monroy mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 2:35 PM said: Hi all, is there a way to check is a browser is accepting my cookies? yes that's easy. set the cookie and then test for it. if you can read the cookie back you're all set! if not, the person is not accepting

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Lester Caine
OK 72 Hours later I got 6 bounce messages back related to Fridays eMails direct to lists.php.net ( one of which is yet another attempt to unsubscribe from php-db ) From - Mon Apr 19 20:43:21 2004 X-UIDL: 381838 X-Mozilla-Status: 0001 X-Mozilla-Status2: 1000 Received: from pop.lsces.co.uk by

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Justin Palmer
I have used hostrocket.com and ipowerweb.com with good success. I don't think that it is my place per say to tell you who to host with, for I don't want to give bad advise, if it does not work for you. I do have a resource that might be helpful. Here it is http://webhostingforums.com/ Regards,

Re: [PHP] Why NNTP is not default protocol for php groups

2004-04-19 Thread T. H. Grejc
Red Wingate wrote: Same here, just installed some Newsgroup Software and everything works just fine for me :-) OK then, I live in East Europe, so maybe my location is to blame for frequent news server down time. But, there is still question of bandwidth. Why php.net don't want to save some

Re: [PHP] Cookies

2004-04-19 Thread Jordi Canals
Fidencio Monroy wrote: Hi all, is there a way to check is a browser is accepting my cookies? Tnx Take a look to the function get_browser(), perhaps could help. Regards, Jordi. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Andy B
i know i got tons of those before... all i did was block the btconnect address and be done with it just ignore them at least thats all i did - Original Message - From: Lester Caine [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 19, 2004 6:02 PM Subject: Re: [PHP]

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Lester Caine
Andy B wrote: i know i got tons of those before... all i did was block the btconnect address and be done with it just ignore them at least thats all i did BUT that does not help at all. btconnect is my service provider, and I have to send my eMails through them. The messages are caused by

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Andy B
i guess that would be a slight problem then - Original Message - From: Lester Caine [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 19, 2004 6:36 PM Subject: Re: [PHP] Unwanted e-mails Andy B wrote: i know i got tons of those before... all i did was block the

RE: [PHP] oo question

2004-04-19 Thread Chris W. Parker
Kelly Hallman mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 12:34 PM said: I think what you're talking about here is encapsulation. in that case what is abstraction? PROPOSED CHANGE: class Customer { ... function initialize_customer($customer_id) { // grab data from

RE: [PHP] Unwanted e-mails

2004-04-19 Thread Chris W. Parker
Lester Caine mailto:[EMAIL PROTECTED] on Monday, April 19, 2004 3:37 PM said: Andy B wrote: i know i got tons of those before... all i did was block the btconnect address and be done with it just ignore them at least thats all i did yeah me too. these come in all the time. BUT

RE: [PHP] oo question

2004-04-19 Thread Kelly Hallman
Apr 19 at 3:46pm, Chris W. Parker wrote: Kelly Hallman mailto:[EMAIL PROTECTED] I think what you're talking about here is encapsulation. in that case what is abstraction? I suppose it's pretty similar, but I believe that encapsulation is the pedantic term for hiding the data structure

[PHP] Images PHP

2004-04-19 Thread Tim Thorburn
Hi, I've created a small program that allows users to upload an image, and then resize that image one or more times depending on the desired outcome (once for web documents, twice for photo galleries, etc). Anyways, it seems that a large number of my clients are using older digital cameras to

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Andy B
BUT that does not help at all. btconnect is my service provider, and I have to send my eMails through them. The messages are caused by lists.php.net not accepting my messages but your messages *ARE* getting accepted otherwise i would not be reading this email right now! chris. when i

  1   2   >