[PHP] php filling apache error log with copies of the server environment

2001-10-31 Thread Liam Hoekenga
Hey - My php installation is filling my apache error log with copies of the piece of the environment that PHP knows as HTTP_SERVER_VARS. It seems to be caused by imap functions. doesnt do it... but if i do I get a bunch of: REDIRECT_nokeepalive=1 REDIRECT_STATUS=200 REDIRECT_URL=/test.php R

Re: [PHP] Where are lists of PHP's predefined constants and keywords?

2001-10-31 Thread Mike Eheler
Don't forget true, false, and null. :) A good place to look might be to grab a syntax definition file for some sort of popular editor (like textpad), and just go through it. Not the best way, for sure. The best place to look easily is http://www.php.net/manual/en/ Mike Johnson, Kirk wrote:

[PHP] Need Mortgage Leads?

2001-10-31 Thread justjumping
Are you a Mortgage Office in need of leads? We receive refinance requests direct from borrowers throughout the United States daily! Whether your office services one state or multiple states, our leads will meet your needs! A few features of our program: *Leads are exclusive

RE: [PHP] WindowsXP, PHP4 and MS SQL functions

2001-10-31 Thread Andrew Kirilenko
Hello! Have you specified path to extensions? In my case: extension_dir = c:/apps/php/extensions/ Best regards, Andrew Kirilenko. > -Original Message- > From: Brandon Orther [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 01, 2001 1:41 AM > To: PHP User Group > Subject: [PHP] Win

Re: [PHP] Re: Where are lists of PHP's predefined constants andkeywords?

2001-10-31 Thread Philip Olson
More specifically, 'empty' is a language construct and not a function. Other constructs are unset, isset and, well, there are others :) For example: $arr = array('mysql_connect' => 'foo', 'unset' => 'bar', 'empty' => 'ooh'); print $arr[mysql_co

[PHP] Text DB's & bbs lists

2001-10-31 Thread ArsenKirillov
does anybody hear about board(bbs or phorum) written oin php wihout using any kind of SQL DB ? I think of developing one in text db (separated by | fields in one line) Did anybody think of this is good idea ? (i have problem in my country - stupid admins can't run MySQL to be such stable as php4.)

Re: [PHP] Problems inserting single quote into Oracle database

2001-10-31 Thread Kevin Dewsnup
Thanks David, I set magic_quotes_sybase to "On" (even though I'm using oracle) and that did the trick. php.ini ; Use Sybase-style magic quotes (escape ' with '' instead of \'). magic_quotes_sybase = On I was able to insert data with an apostrophie into the database from a form and the data looks

[PHP] Crating program for access parallel

2001-10-31 Thread Luz Lopez
Hi all I am creating a program PHP that will be access int the web for many persons, this aplication will be permit to insert registry on a data base Postgresql, When a person this inserting a registry I need to block that table so that another user cannot to access the data base. Exists some

[PHP] Detecting Languages...

2001-10-31 Thread Arcadius A.
HEllo ! I have a website designed in several languages (En , Fr , Cz) My question is : How to detect the language setting of the the visitor's PC in order to redirect him to a specified content ? Thanks ... Arcad. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

RE: [PHP] Text DB's & bbs lists

2001-10-31 Thread Jack Dempsey
Hi Arsen, I think that'd be a lot of work, and I'm not sure I understand why you can't use MySQL? I suppose you could do it, but i think you'll find once starting it, that its not worth the time it'll need... Jack -Original Message- From: ArsenKirillov [mailto:[EMAIL PROTECTED]] Sent: W

[PHP] paypal instant notification

2001-10-31 Thread Sondra Russell
Hi guys! I'm going to use paypal with my site, and they have a cool "instant notification" feature which sends, to a page I preassign, information about a transaction as it happens. My script is supposed to: a) receive this information (as a "post") b) send it back to them with a sort of "is t

[PHP] text into web db interface

2001-10-31 Thread AAustin
Hi Is there a php technique, app, code example..., where users can enter normal formatted text with paragraphs etc and the '' or ' ' tags (and even 'table') are entered so the text looks ok on an php page. This will then mean the end user does not need to know a smattering of html code just to en

Re: [PHP] sending email to php script

2001-10-31 Thread Adrian D'Costa
On Mon, 29 Oct 2001, David Robley wrote: > On Sat, 27 Oct 2001 03:23, JSheble wrote: > > A while ago an email came through here about how to parse out email > > message from a php script. The thing that was mostly of interest to me > > is the ability to send an email to a php script, I guess thr

RE: [PHP] sending email to php script

2001-10-31 Thread Jason Murray
> > You'll also need to compile php as a standalone, and put as > > the first line of your php script > > > > #!/path/to/php -q > > What if we need both version?? There's nothing stopping you running both. J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PR

[PHP] Dynamic update of content

2001-10-31 Thread Martin
Some time ago I asked for help regarding techniques to provide dynamic update of content on a PHP-page. Someone mentioned a javascript routine which I've forgotten. Anyone here might have a clue? What I want to do is that User selects and option from a option box, and depending on what that se

[PHP] Re: Dynamic update of content

2001-10-31 Thread Galkov Vladimir
Good day! Well... you can recive access to any tag on HTML page form java-script with code like this: here will be text from selected option . function some_event() { objH1 = document.all["razdel"]; objSelector = document.all["selector"]; objH1.innerT

[PHP] Re: paypal instant notification

2001-10-31 Thread CC Zona
In article , [EMAIL PROTECTED] (Sondra Russell) wrote: > They have provided a perl sample script (see below). > > Mostly I'm just trying to figure out how to replicate the whole > "receiving", "sending", and "receiving again" thing in PHP. Most of tha

Re: [PHP] need coments...

2001-10-31 Thread Jason G.
Second comment is that we are not a review board for specific products. At 10:40 PM 10/30/2001 +0300, you wrote: >Good day! > >I try to wrote Web-interface for DNS. Only simple test version now. I'd like >to listen your comets to make real good and useful thing. mail me you >coments >please > >G

Re: [PHP] show png in the browser

2001-10-31 Thread Jason G.
Ever consider reading the online manual? First, say header("Content-type: image/png"); Second, create image. third use ImagePNG() function fourth, destroy image. fifth, go directly to the php script that generates the image, then you will see PHP generated errors. -Jason Garber IonZoft.com At

Re: [PHP] question about variables...

2001-10-31 Thread Jason G.
READ THE MANUAL. variable variables $i=1; $sName = "seat$i"; $value = $$sName; At 04:40 PM 10/31/2001 +1100, sc wrote: >Hey all; > >If i have a variable say, $seat and i want to go through variables with a >number, ie. $seat1 , $seat2 etc. how would i go about it? i have one setup >where $p in

[PHP] run php in commandline

2001-10-31 Thread JIM
hi all, i want to know how i can feed a parameter into a php script in commandline? eg. php getdata.php apple orange so, i want to get use of "apple" and "orange"... any help pls! jim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] run php in commandline

2001-10-31 Thread JIM
hi all, i want to know how i can feed a parameter into a php script in commandline? eg. php getdata.php apple orange so, i want to get use of "apple" and "orange"... any help pls! jim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] print on printer

2001-10-31 Thread Luz Lopez
Hi All I have a php that access to database and show the values in the browser, But I need add hte option of print on printer, but that only print the table with values. Somebody can help me? Thanks in Advanced, Regards, _ Ge

RE: [PHP] defending PHP mail function

2001-10-31 Thread Jason G.
I've just been watching the posts regarding this issue. I can see the following: You SHOULD test it on *nix JUST to narrow down the problem. You ask for help from all the *VERY NICE* people on this list, and then WILL not do what they say will help??? If you do not like the php smtp implementat

Re: [PHP] sending email to php script

2001-10-31 Thread David Robley
On Wed, 31 Oct 2001 22:04, Adrian D'Costa wrote: > On Mon, 29 Oct 2001, David Robley wrote: > > On Sat, 27 Oct 2001 03:23, JSheble wrote: > > > A while ago an email came through here about how to parse out email > > > message from a php script. The thing that was mostly of interest > > > to me is

Re: [PHP] run php in commandline

2001-10-31 Thread Jason G.
I just did that tonight. Lookup the predefined variables in the manual. $argc gives a count of the arguments $argv is an array of the arguments Ex: php -q myscript.php Apple Orange $argc == 3 $argv[0] == 'php -q myscript.php' or something like that $argv[1] == 'Apple' $argv[2] == 'Orange' -Ja

Re: [PHP] text into web db interface

2001-10-31 Thread David Robley
On Thu, 1 Nov 2001 14:51, AAustin wrote: > Hi > > Is there a php technique, app, code example..., where users can enter > normal formatted text with paragraphs etc and the '' or ' ' tags > (and even 'table') are entered so the text looks ok on an php page. > This will then mean the end user does

[PHP] Secure transfer

2001-10-31 Thread Morten Winkler Jørgensen
Hi php'ers I'm about to build a site that allows payment with credit card. Of cause the card number, expiration date etc. should be secured when transfered. How do I do that? I've been looking at the OpenSSL functions in php, but they seem to be unsatisfying. Kind regards, Mor

[PHP] Week of month

2001-10-31 Thread Sheni R. Meledath
Hello: Is there any way to find out the week of the month. Today is in the first week of month. That is, a function like weekofmonth() which displays 1 today & 2 next week. thanks Sheni R Meledath [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [

Re: [PHP] how do I use "<" and "<" with eval()?

2001-10-31 Thread Stefan Rusterholz
- Original Message - From: "John A. Grant" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 31, 2001 11:51 PM Subject: [PHP] how do I use "<" and "<" with eval()? > I'm not having an easy time understanding the discussion > in the doc for eval(). > > I want to read th

<    1   2