[PHP] show_source or highlight_string wrapping

2004-04-19 Thread Aidan Lister
Why do these functions wrap at approximately 80 chars? It's stupid! How can this be worked around? -- 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 Red Wingate
Is php.net bounceing your posts or does your ISP bounce your e-mails? maybe you could send us a copy to have a look? -- red Lester Caine wrote: > Chris W. Parker wrote: > >> but your messages *ARE* getting accepted otherwise i would not be >> reading this email right now! > > NO THEY ARE NOT

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Lester Caine
Chris W. Parker wrote: but your messages *ARE* getting accepted otherwise i would not be reading this email right now! NO THEY ARE NOT - This reply HAS to be sent via the newsgroup! The bounce messages I am getting are as a result of .php.net NOT accepting my perfectly valid posts! -- Lester Ca

Re: [PHP] CURL Help

2004-04-19 Thread Curt Zirzow
* Thus wrote Monty ([EMAIL PROTECTED]): > Hi, I'm trying to get a site working with our credit card merchant gateway's > "direct mode" using CURL. But I'm not exactly sure if I'm doing it right. > Here's what the gateway wants sent to it as a POST: > > POST /gw/sas/direct3.0 HTTP/1.0 > Hos

Re: [PHP] Unsubscribing Was: Unwanted e-mails

2004-04-19 Thread Lester Caine
Chris Shiflett wrote: If you look at the first post above, it appears he is hitting "Reply" to list messages, trying to unsubscribe by sending a post to the list. If you look at the text of the return that he passed on to the list, it also indicates he was sending his unsubscribe posts to the list

Re: [PHP] Program that'll parse HTML form with results and send HTML email?

2004-04-19 Thread Red Wingate
Nice one here, got some class for this type of handling as well but it will also do some nice magic when it comes to checking for valid data or displaying the input again for validation :-) My way to go: 1. Display the form 2. Check all required fields (name start with req_) 2.1 ( ok ) Parse page

Re: [PHP] FW: Resizing Pictures

2004-04-19 Thread Terence
You might want to try google, search for 'php resize image' or something along those lines. very often there is lots of code already out there. - Original Message - From: "Ryan Schefke" <[EMAIL PROTECTED]> To: "'Warren Vail'" <[EMAIL PROTECTED]>; "'Php-General-Help'" <[EMAIL PROTECTED]> S

[PHP] Re: Flatten/Unflatten arrays

2004-04-19 Thread Red Wingate
Orangehairedboy wrote: Hi, check out http://php.net/serialize and http://php.net/unserialize . hope this helps :-) -- red [...] > Hi all, > > In Perl there is a way to flatten an array into a string, and a matching > function to unflatten the array. > > This is different from explode/implode

RE: [PHP] FW: Resizing Pictures

2004-04-19 Thread Red Wingate
Maybe you should take a look at PHPs Image functions, finding out which function matches your needs is not that hard :-) If you don't find the right functions you can also take a look at this list's archives as this topic was raised around 5 times 04/04 :-p -- red [...] > Hi Warren, > > Thanks

Re: [PHP] Moving a file

2004-04-19 Thread Tom Rogers
Hi, Tuesday, April 20, 2004, 7:41:18 AM, you wrote: LL> Hello LL> Is there a build-in function to move files in php ? LL> or sholud i just open file A and copy it content to file B , then del file LL> A. LL> Thanks for help. rename() may do what you want -- regards, Tom -- PHP General Mail

[PHP] Re: Moving a file

2004-04-19 Thread Nadim Attari
> Is there a build-in function to move files in php ? > or sholud i just open file A and copy it content to file B , then del file > A. > > Thanks for help. First http://www.php.net/copy to destination Then http://www.php.net/unlink source. -- PHP General Mailing List (http://www.php.net/) To un

[PHP] Re: CURL Help

2004-04-19 Thread Manuel Lemos
Hello, On 04/20/2004 02:36 AM, Monty wrote: Do my CURL statements look correct based on what the gateway needs to receive?? I have PHP 4.3.2 and Apache 2.0 running on Red Hat ES 3.0. I suspect that the port should not be in the host header. Anyway, you may want to try using this HTTP client class

[PHP] Re: Resizing Pictures

2004-04-19 Thread Tom Reed
This will resize JPG images: function get_image_width($image) { $imgsize = getimagesize($image); return $imgsize[0]; } function get_image_height($image) { $imgsize = getimagesize($image); return $imgsize[1]; } function resize_image($originalimage, $dest_width, $save_path, $newfilename)

[PHP] Re: Images & PHP

2004-04-19 Thread Nadim Attari
> http://www.imagemagick.org/ -- Forgot to include this link... http://pecl.php.net/package/imagick -- > Hope this will help !!! > > Regards, > > Nadim Attari -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP] Moving a file

2004-04-19 Thread Lukasz Leszek
Hello Is there a build-in function to move files in php ? or sholud i just open file A and copy it content to file B , then del file A. Thanks for help. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] FW: Resizing Pictures

2004-04-19 Thread Daniel Rucci
Ryan Schefke wrote: How do you resize pictures once they're in a certain directory? I have the script to upload a picture, that's working fine. I just need some help with resizing it. Can someone help? Thanks! im creating a new image in this function, but you get the idea.. function ge

[PHP] Re: Images & PHP

2004-04-19 Thread Nadim Attari
http://www.imagemagick.org/ Hope this will help !!! Regards, Nadim Attari -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] CURL Help

2004-04-19 Thread Monty
Hi, I'm trying to get a site working with our credit card merchant gateway's "direct mode" using CURL. But I'm not exactly sure if I'm doing it right. Here's what the gateway wants sent to it as a POST: POST /gw/sas/direct3.0 HTTP/1.0 Host: secure.gateway.com:1401 Content-Type: applica

[PHP] Freelance PHP Bids

2004-04-19 Thread php-list
Hello, There is a person asking me where she can find a website developer that will create an e-commerce solution for her. I don't feel I'm ready to help her out in that area yet, but I still want her to be able to have other choices. I remember there was a main website where freelance programmer

Re: [PHP] sessions getting destroyed for *Some* clients

2004-04-19 Thread Travis Low
Make sure it's not just a cookie-problem related to server name. The shopping cart session for "original-remote-control.co.uk" is different from the shopping cart for "www.original-remote-control.co.uk". If this is your problem, I think you can fix it by changing how you call "setcookie". Of

Re: [PHP] Program that'll parse HTML form with results and send HTML email?

2004-04-19 Thread Tom Rogers
Hi, Tuesday, April 20, 2004, 11:10:24 AM, you wrote: JWH> Does anyone know of a script that'll receive the results of a form, JWH> parse the original form and substitute the user supplied data in for the JWH> form elements and then send an HTML email of the "form"? JWH> For a static form, this ob

[PHP] problem with SSL

2004-04-19 Thread adwinwijaya
Hello php-general, Before, our project didnt use SSL mode and it work perfectly. But now, when we want to use ssl mode, it didnt work as we expected.. for example, when I try to type https://localhost/ it display : Fatal error: Cannot instantiate non-existent class: smarty in /var/www/html/HOME/w

[PHP] sessions getting destroyed for *Some* clients

2004-04-19 Thread Jaskirat Singh
Hi Guys, I have some thing weird happening with sessions here. They are getting destroyed/reset for *SOME* clients. I wrote a shopping cart which obviously needs sessions to work. It works perfectly fine on my development server .. but when I move it to my production server it starts behaving stra

[PHP] Unsubscribing Was: Unwanted e-mails

2004-04-19 Thread Chris Shiflett
--- Raquel Rice <[EMAIL PROTECTED]> wrote: > If you look at the first post above, it appears he is hitting > "Reply" to list messages, trying to unsubscribe by sending a post > to the list. If you look at the text of the return that he passed on > to the list, it also indicates he was sending his u

RE: [PHP] FW: Resizing Pictures

2004-04-19 Thread Ryan Schefke
Hi Warren, Thanks for the reply; however, that wasn't the answer I was searching for. Using PHP, I would like to resize a file once it's store in a directory on a (my) webserver. Anyone know? -Original Message- From: Warren Vail [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 1

RE: [PHP] FW: Resizing Pictures

2004-04-19 Thread Warren Vail
If you don't mind doing them by hand, Window Paint can, use Image->Stretch/Skew and Stretch by the same percentage for horizontal and vertical dimensions to keep the same perspective (less than 100% will reduce the picture and more than 100% will stretch, but clarity of the image will suffer from e

Re: [PHP] Program that'll parse HTML form with results and send HTML email?

2004-04-19 Thread John W. Holmes
Justin French wrote: But I guess your motivation behind starting with the HTML is so that Joe Average can build a form in a WYSIWYG editor without caring about anything else, right? Yeah, that's the key. It'd be easy if I could just build everything from an XML file. I'm thinking that if I just

[PHP] Looking for IM or Chat application

2004-04-19 Thread Tony Areghan
H fellas, This is my first post and I hope I'm doing this right! I'm working on a dating site where I'd like to give the users the opportunity to send an offline message to or chat with a person when they view the person's profile depending on whether the person is on or offline respectively).

[PHP] FW: Resizing Pictures

2004-04-19 Thread Ryan Schefke
How do you resize pictures once they're in a certain directory? I have the script to upload a picture, that's working fine. I just need some help with resizing it. Can someone help? Thanks!

[PHP] Program that'll parse HTML form with results and send HTML email?

2004-04-19 Thread John W. Holmes
Does anyone know of a script that'll receive the results of a form, parse the original form and substitute the user supplied data in for the form elements and then send an HTML email of the "form"? For a static form, this obviously isn't too hard, but it'd be ideal if the program was dynamic en

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Ryan A
> > It is times like this when we all need to get together and pray to god... > . > > to burn the bastard spammers and their loved ones on earth and in hell. > > > Amen. > Hmmm... with 6 degrees of separation you're probably some spammer's > loved one -- crap, I probably am too! I demand that yo

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Raquel Rice
On Mon, 19 Apr 2004 20:14:22 -0400 "Andy B" <[EMAIL PROTECTED]> wrote: > > - Original Message - > From: "Raquel Rice" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Monday, April 19, 2004 7:28 PM > Subject: Re: [PHP] Unwanted e-mails > > > > On Fri, 16

[PHP] creation of php-cli and php-cgi

2004-04-19 Thread Carel, Michael P. (Digitel-GSM)
Hi, I'm having a problem compiling php with cli and cgi support. When i compiled php in redhat 7.3 it creates both php-cgi and php-cli in sapi/cgi and sapi/cli directories, but when i compiled it in Redhat Advance Server only php-cli was created. I used the same config command parameters in both

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Robert Cummings
On Mon, 2004-04-19 at 19:59, Ryan A wrote: > > > when i talked to my internet people about those sorts of emails like > > btconnect and pandasoft virus warnings all they told me was that some > > spammer person had probably tagged the php mailinglist database of email > > addresses and are now bou

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Andy B
hahahaha!! go for it grin!! - Original Message - From: "Ryan A" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, April 19, 2004 7:59 PM Subject: Re: [PHP] Unwanted e-mails > > > when i talked to my internet people about those sorts of emails like > > bt

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Andy B
they arent just coming from the people who want to unsubscribe?? they are going to people who just want to send a message to the list too... got rid of the info desk the advanced whatever and the pandasoft stuff but having problems with mysql mailing list myself too... same sort of problems... -

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Ryan A
> when i talked to my internet people about those sorts of emails like > btconnect and pandasoft virus warnings all they told me was that some > spammer person had probably tagged the php mailinglist database of email > addresses and are now bouncing emails around all the php mailing list > people

[PHP] Re:[PHP] Bookmark server

2004-04-19 Thread pan
"Chris W" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am planning on writing a "bookmark server" in php. The idea is I will > have a database that stores all my internet favorites on a web server > some where, so if I am doing some web browsing away from home and find a > site

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

2004-04-19 Thread Justin Patrin
T. H. Grejc wrote: 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 w

Re: [PHP] Flatten/Unflatten arrays

2004-04-19 Thread OrangeHairedBoy
Ah! THANK YOU THANK YOU THANK YOU! I was going insane when I couldn't remember the names of the Perl functions either! :) Lewis "Chris W. Parker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] OrangeHairedBoy on Monday, April 19, 2004 4:23 PM said: >

Re: [PHP] Unwanted e-mails

2004-04-19 Thread Raquel Rice
On Fri, 16 Apr 2004 20:45:37 +0100 Lester Caine <[EMAIL PROTECTED]> wrote: > John W. Holmes wrote: > > > From: "Lester Caine" <[EMAIL PROTECTED]> > > > >>I am hitting reply, and EVERY php list sends a message back > >bouncing the>unsubscribe message ( along with every post I have > >tried to mak

RE: [PHP] Flatten/Unflatten arrays

2004-04-19 Thread Chris W. Parker
OrangeHairedBoy on Monday, April 19, 2004 4:23 PM said: > In Perl there is a way to flatten an array into a string, and a > matching function to unflatten the array. i think you're looking for serialize() and unserialize(). http://php.net/serialize http://php/net/

Re: [PHP] House for rent - Good price

2004-04-19 Thread OrangeHairedBoy
And he set the date to 12/7/2165. Can the message be deleted? I hate spam... "Oscar F" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Yeah this is no Real State List. Put up an ad on the newspaper. > > O. > > > Leif K-Brooks wrote: > > > [EMAIL PROTECTED] wrote: > > > >> Hello all

[PHP] Flatten/Unflatten arrays

2004-04-19 Thread OrangeHairedBoy
Hi all, In Perl there is a way to flatten an array into a string, and a matching function to unflatten the array. This is different from explode/implode because the function supports multidimentional arrays as well. The purpose is to be able to write an array to a flatfile, and when necessary, r

Re: [PHP] Images & PHP

2004-04-19 Thread Andy B
dont know that much about images at the minute but phpclasses.org has tons of image classes that might help... - Original Message - From: "Tim Thorburn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 19, 2004 7:12 PM Subject: [PHP] Images & PHP > Hi, > > I've created a

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.

[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] oo question

2004-04-19 Thread Kelly Hallman
Apr 19 at 3:46pm, Chris W. Parker wrote: > Kelly Hallman > > 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

RE: [PHP] Unwanted e-mails

2004-04-19 Thread Chris W. Parker
Lester Caine 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

RE: [PHP] oo question

2004-04-19 Thread Chris W. Parker
Kelly Hallman 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) { >>// gra

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 th

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 li

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] U

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] 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 band

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] 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] Cookies

2004-04-19 Thread Chris W. Parker
Fidencio Monroy 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] 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 www.phpwebh

[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] 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

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] 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 con

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] 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 ge

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 ma

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 news.php.net

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 news.php.net

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] 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,

[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 t

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. Ma

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 phon

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 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 fr

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 for

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. Whe

RE: [PHP] Re: oo question

2004-04-19 Thread Kelly Hallman
Apr 19 at 11:06am, Chris W. Parker wrote: > Torsten Roehr > > 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 be

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] 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 pear

[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 p

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, 2004

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 navi

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, A

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 me

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

[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 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, I

[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 ov

[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 d

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

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 th

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] 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

[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 c

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

Re: [PHP] Re: oo question

2004-04-19 Thread Torsten Roehr
>"Chris W. Parker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >Torsten Roehr 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.. um

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 o

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] Re: oo question

2004-04-19 Thread Chris W. Parker
Torsten Roehr 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

  1   2   >