RE: [PHP] PHP Editors

2001-02-15 Thread John Monfort
__John Monfort_ _+---+_ P E P I E D E S I G N S www.pepiedesigns.com "The world is waiting, are you ready?" -+___+- On Fri, 16 Feb 2001, Maxim Maletsky wrote: > This issue is better to search

Re: [PHP] PHP Book Recommendations

2001-02-16 Thread John Monfort
Profession PHP Programming ISBN: 1-861002-96-3 __John Monfort_ _+---+_ P E P I E D E S I G N S www.pepiedesigns.com "The world is waiting, are you ready?" -+___+- On Fri, 16 Feb 2001, Bri

Re: [PHP] Finding the? in $REQUEST_URI?page=blah

2001-02-16 Thread John Monfort
Is the PHP split command the same as that in Perl? ex. ($var_1, $var_2) = split(/:/,$string, 2); will something like that work? On Fri, 16 Feb 2001, ..s.c.o.t.t.. [gts] wrote: > i'd use split, to split the value up into an array: > > if this is your url > $url = "/pages/e

Re: [PHP] UPS shipping calculation

2001-02-17 Thread John Monfort
There is a Perl module that is very useful for this, I'm currently in the process of implementing it. You can find a copy at http://www.seva.net/~msolomon/Business-UPS/dist/ I'm looking for something similar for FedEx, so let me know if you find one. __John Monfort

[PHP] Perl PRINT vs PHP

2001-02-18 Thread John Monfort
Hello everyone, In perl, you can use 'print qq' to print a block of text. Like, print qq~ my text block goes here, with " " or whatever... my other line with more special characters... ~; Is there something similar in PHP? I've tried the above, but it does not work. I

Re: [PHP] HTTP POST Question

2001-02-19 Thread John Monfort
I've been struggling with the same idea. I haven't been able to process the returned value, but I've the following methods to DISPLAY the cgi results. Although, the PHP has no way of knowing wether the CGI evaluated to a Yes or No result. If you solve this, then please let me know.

RE: [PHP] HTTP POST Question

2001-02-19 Thread John Monfort
> 1. It appears if I use the header function I have to redirect the page to > another page, it doesn't appear possible to retrieve a page into the current > page? Unless someone can show me some code that would do that. > If all you want is to display the remote page, within the local page,

Re: [PHP] woe is me

2001-02-19 Thread John Monfort
I feel your pain. :-( __John Monfort_ _+---+_ P E P I E D E S I G N S www.pepiedesigns.com "The world is waiting, are you ready?" -+___+- On Mon, 19 Feb 2001, Adrian Murphy wrote: > i'

Re: [PHP] what's the difference between include and require??

2001-02-19 Thread John Monfort
An unsuccessful include will give you an error. An unsuccessful require will kill the program. __John Monfort_ _+---+_ P E P I E D E S I G N S www.pepiedesigns.com "The world is waiting, are you ready?" -+___

<    1   2