Re: [PHP] PHP and MySQL query

2001-03-09 Thread Yasuo Ohgaki
Read RFC2396 for URI format. You are escaping query string as HTML where do you don't have to. When you deal with query string, you should escape as URL. Read PHP manual for rawurlencode()/rawurldecode() for URL encode/decode. Regards, Yasuo Ohgaki - Original Message - From: "Jim Ray" <

Re: [PHP] oohform validation help

2001-03-09 Thread Yasuo Ohgaki
>""Christopher Cheng"" <[EMAIL PROTECTED]> wrote in >message 989jvm$9r0$[EMAIL PROTECTED]">news:989jvm$9r0$[EMAIL PROTECTED]... >What should I put in for the parameter jvs_name of the oohform- >>start? Is >that a name of another javascript file? Where can I get a sample >script? > >I would like to

Re: [PHP] payment

2001-03-09 Thread Aaron Tuller
At 12:27 AM -0600 3/10/01, Jeffrey Greer wrote: >With paypal's business account there are no credit checks and the rate >is 2.2% for cc payments. except you can't really integrate it into your web site. who knows how long paypal will be around. it shoes up as paypal on people's credit card st

Re: [PHP] payment

2001-03-09 Thread Jeffrey Greer
On 9 Mar 2001 14:15:37 -0800, [EMAIL PROTECTED] (Rick St Jean) wrote: >How to people typically integrate payment processors with PHP? >And what processors are used most often? I know that a number >of people are scrambling after cybercash died. There is a site out >there www.opay.com that says

[PHP-CVS] cvs: php4 /pear/DB pgsql.php

2001-03-09 Thread Jon Parise
jon Fri Mar 9 22:04:15 2001 EDT Modified files: /php4/pear/DB pgsql.php Log: Make the #options, $tty, and $port parameters optional. Index: php4/pear/DB/pgsql.php diff -u php4/pear/DB/pgsql.php:1.30 php4/pear/DB/pgsql.php:1.31 --- php4/pear/DB/pgs

Fwd: RE: [PHP] HTML book recommendation

2001-03-09 Thread Brian White
>From: "Greig, Euan" <[EMAIL PROTECTED]> >To: Brian White <[EMAIL PROTECTED]> >Subject: RE: [PHP] HTML book recommendation >Date: Fri, 9 Mar 2001 12:00:19 - >X-Mailer: Internet Mail Service (5.5.2650.21) > >I have the OReilly book on Style Sheets and it is very good, but also very >in depth.

[PHP] Fields, Comboboxes, repost

2001-03-09 Thread RealGM
Hi, I just have a couple of questions that I hope some people will know the answers to. 1. I am hoping to read the entire range of values from a field in my MySQL table into a combo box on my form, but I am not sure how. On top of that, I want the user to select one value from this list, pres

[PHP] PHP and MySQL query

2001-03-09 Thread Jim Ray
I have a simpe query that I can not seem to get to work. Here is the HTML side: Here is the PHP side: The fields are being past, but I get 0 in the results? $result=mysql_query("select * from $TA where $SortField='$search%' order by $SortField"); Am I missing something here? Thanks fo

[PHP] $userfile_name broken in PHP4 win32 ?

2001-03-09 Thread Jon Shoberg
Ok, I am running Win2000/Pro with PHP 4.0.? and IIS 5 for some local development. I have tried turning on and off magic quotes. When uploading a file via a form I can access $userfile and echo back to the page the full path. However, $userfile_name, $userfile_type, and $userfile

Re: [PHP] oohform validation help

2001-03-09 Thread Mark Maggelet
On Fri, 9 Mar 2001 09:12:46 -0600, Chris Lee ([EMAIL PROTECTED]) wrote: >using client side form verification is a bad idea anyhow, just write >a simple php verify. Imagine waiting 10 minutes for a 5 MB file to upload on a form just to get an error message that says 'please go back and fill out yo

Re: [PHP] ldap_search()

2001-03-09 Thread Mike Tuller
Ok. That makes sense. I have the structure printed out, so I shouldn't have a problem. > From: "Nick Talbott" <[EMAIL PROTECTED]> > Date: Thu, 8 Mar 2001 08:21:15 - > To: "Mike Tuller" <[EMAIL PROTECTED]>, "php mailing list" > <[EMAIL PROTECTED]> > Subject: Re: [PHP] ldap_search() > > Mike

Re: [PHP] dynamically accessing arrays at variable indexes

2001-03-09 Thread Richard Lynch
http://php.net/print_r -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Dale Robinson" <[EMAIL PROTECTED]> Newsgroups: php.g

Re: [PHP] PHP4 CGI Problem

2001-03-09 Thread Richard Lynch
Is the PHP User allowed to ls that directory? -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Devin Atencio" <[EMAIL PROTEC

Re: [PHP] addslashes against single and double quotes

2001-03-09 Thread Richard Lynch
This is the source of your problems. Use HTMLEntities() or URLEncode() or something before you try to put your string in that. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.

Re: [PHP] Problem with either timing or large data structures...

2001-03-09 Thread Richard Lynch
Are magic quotes different on the two machines? 45K is not that big. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Eric

Re: [PHP] strtotime question

2001-03-09 Thread Richard Lynch
0 is Sunday, 1 is Monday, 2 is Tuesday, ... -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: Jason Murray <[EMAIL PROTECTED

Re: [PHP] HELP!!! Upload files!!!!

2001-03-09 Thread Richard Lynch
>Warning: Rename failed (Invalid cross-device link) in >/usr/local/etc/httpd/htdocs/intranet/upload.php on line 26 In Un*x, you can't "rename" a file from one hard drive onto another. That's what you are trying to do. Change your use of rename() to be copy() instead. -- Visit the Zend Store at

Re: [PHP] PHP and MySQL ....dynamic query?

2001-03-09 Thread Richard Lynch
>You can see my problem here. I want to be able to write parts of my sql statement based upon >user input, and then execute it all at once. How do I tie all of my $qual variables in so >that this will read/execute it properly? $where = ' where 1=1 '; if ($dig == '1'){ $where .= " and track

Re: [PHP] Match Records

2001-03-09 Thread Richard Lynch
Something like this: select (job=$job)+(salary=$salary)+(location=$location) as score from blah order by score desc Each matching parameter gets a "point", and they add up. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.

Re: [PHP] input textfield value cat!

2001-03-09 Thread Richard Lynch
You need quotes around multi-word values in HTML. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "kaab kaoutar" <[EMAIL

Re: [PHP] file() function

2001-03-09 Thread Richard Lynch
At the very end: //> @readfile(basename(($PHP_SELF . ".comment"))); > > ?> $lines = file(($PHP_SELF . ".comment"))); for ($i = 0; $i < 30; $i++){ echo $lines[$i], "\n"; } -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/art

Re: [PHP] Complicated Form Handling

2001-03-09 Thread Richard Lynch
-- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Fred" <[EMAIL PROTECTED]> Newsgroups: php.general Sent: Saturday, March

Re: [PHP] PHP with MySQL doubt

2001-03-09 Thread Richard Lynch
You're done. Just add the port into your mysql_connect function. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: Pablo Pasq

Re: [PHP] security concerns with PHP4 module

2001-03-09 Thread Richard Lynch
Read up on safe_mode at http://php.net -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: "Davydd Cook" <[EMAIL PROTECTED]> New

Re: [PHP] Splitting a complex string problem

2001-03-09 Thread Richard Lynch
Maybe http://php.net/strtok -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: rm <[EMAIL PROTECTED]> Newsgroups: php.general

Re: [PHP] configuring php.ini

2001-03-09 Thread Richard Lynch
> sendmail_path = /usr/sbin/sendmail -t -i ;for unix only, may > supply arguments as well (default is 'sendma > il -t -i') Those apostrophes were for real. You need them. sendmail_path = '/usr/sbin/sendmail -t -i' Without them, the first space is the end, and the -t and -i are being i

Re: [PHP] related to my .htgroup question...

2001-03-09 Thread Richard Lynch
> Ok, so I want to be able to do some things with php. > 1) add a user to the .htpasswd file > I know I can use exec() to run commands on the server. The problem here is > that when I do "htpasswd .htpasswd username" I get prompted for passwords > twice. How the heck can I do that with php? Wil

Re: [PHP] PHP and the MIME type - an Apache question

2001-03-09 Thread Kelly Corkill
I think it might help if you elaborated a little more on what you mean by "parse out all of my PHP scripts to run a particular CGI script". Apache has to be set up so know how to handle php (mime types), but it almost sounds like you're trying to execute a CGI in place of a php file? Also, if t

Re: [PHP] images problem

2001-03-09 Thread Richard Lynch
Maybe strlen($data); -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: John LYC <[EMAIL PROTECTED]> Newsgroups: php.general

Re: [PHP] When form doesn't know what it's sending

2001-03-09 Thread Richard Lynch
> i've concatenated a string from a while statement on a SQL query. example: > "$mars","$venus","$jupiter". let's say i call this $planets. > there are actual variables from a posted form with those names. say, > $mars=1, $venus=2, $jupiter=3. however, when i echo "$planets" i get the > string "$m

Re: [PHP] user_error() default error type

2001-03-09 Thread Richard Lynch
I dunno what the big deal is with typing a few more letters, but... define('E', E_USER_ERROR); mysql_query($q) or trigger_error(mysql_error()." in ".$q,E); -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a

Re: [PHP] PHP and the MIME type - an Apache question

2001-03-09 Thread Richard S. Crawford
Yes... Unfortunately, my question was not answered. I also added AddType text/php php to my httpd.conf file, but still no go. At 11:18 AM 3/10/01 +0900, Yasuo Ohgaki wrote: >There is a great manual and FAQ. Did you read manual? FAQ? > >PHP Manual >http://www.php.net/manual/en/ >Inst

[PHP-CVS] cvs: php4 /ext/pdf pdf.c

2001-03-09 Thread Rui Hirokawa
hirokawaFri Mar 9 18:21:38 2001 EDT Modified files: /php4/ext/pdf pdf.c Log: just reversed a previous patch. Index: php4/ext/pdf/pdf.c diff -u php4/ext/pdf/pdf.c:1.76 php4/ext/pdf/pdf.c:1.77 --- php4/ext/pdf/pdf.c:1.76 Fri Mar 9 18:03:26 200

Re: [PHP] PHP and the MIME type - an Apache question

2001-03-09 Thread Yasuo Ohgaki
There is a great manual and FAQ. Did you read manual? FAQ? PHP Manual http://www.php.net/manual/en/ Install Section http://www.php.net/manual/en/installation.php FAQ http://www.php.net/FAQ.php Regards, Yasuo Ohgaki ""Richard S. Crawford"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]"

[PHP-CVS] cvs: php4 /ext/iconv iconv.c /ext/pdf pdf.c

2001-03-09 Thread Rui Hirokawa
hirokawaFri Mar 9 18:03:26 2001 EDT Modified files: /php4/ext/iconv iconv.c /php4/ext/pdf pdf.c Log: initialized some strings in global variable structure. Index: php4/ext/iconv/iconv.c diff -u php4/ext/iconv/iconv.c:1.7 php4/ext/iconv/i

[PHP] PHP and the MIME type - an Apache question

2001-03-09 Thread Richard S. Crawford
I don't even know if this counts as a basic or an advanced question. Shows how much of a newbie I am. :) I'm trying to configure my Apache server to parse out all of my PHP scripts to run a particular CGI script when a PHP page is served. I know that in order to parse out HTML pages, I add

Re: [PHP] payment - the death of CyberCash

2001-03-09 Thread Derek Sivers
Everyone so far has been recommending ClearCommerce: http://www.clearcommerce.com/ Since my site is 100% PHP and depends on CyberCash for sales, I'll let everyone here know what I find out about getting PHP to work with ClearCommerce or anyone else. -- PHP General Mailing List (http://www.

Re: [PHP] Advanced PHP

2001-03-09 Thread Kath
Yes, lets please respect everyones beliefs and just drop this. - Kath - Original Message - From: "Rick St Jean" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 09, 2001 7:44 PM Subject: RE: [PHP] Advanced PHP > if (you want to debate) > { > pri

RE: [PHP] Advanced PHP

2001-03-09 Thread Rick St Jean
if (you want to debate) { print ("email me.\n [EMAIL PROTECTED]") ; } else { print ("Break thread"); }; That is whole other debate that I feel very strongly about. I am a born again Christian and not going to waver. If you wa

[PHP] Mapping Object Structure to Database schema and visa versa

2001-03-09 Thread Dennis Gearon
Any programs out there that will essentially put all the functionality of a Oracle database into the prepend file of a site for accessing a MySQL database? Or one that translates DB schemas into classes/objects? THIS is where having private variables in classes would be MUCHO handy. Absolutely re

RE: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
Just for the record, the theory evolution doesn't say that "every" living creature evolved from monkeys, just as silly humanoids. I would like to apologize to everyone on the list for creating the discussion, it's a wee bit off topic. Keith On Fri, 9 Mar 2001, Jeff Oien wrote: > LOL. > > The e

Re: [PHP] Advanced PHP

2001-03-09 Thread Kath
> Where did the chicken come from, God? Lets not get into that debate :| - Kath - Original Message - From: "Keith Vance" <[EMAIL PROTECTED]> To: "Jerry Lake" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, March 09, 2001 7:01 PM Subject: RE: [PHP] Advanced PHP > Where did th

RE: [PHP] Advanced PHP

2001-03-09 Thread Jerry Lake
I'm nearly certain they came from smallish chicken shaped rocks Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message- From: Rick St Jean [mailto:[EMAIL PROTECTED]] Sent: Frida

RE: [PHP] Advanced PHP

2001-03-09 Thread Jeff Oien
LOL. The evolutionists will tell you they came from worms. So according to them the worm came first and it "evolved" into something else. Tough to know where the egg came into the picture according to that theory. Jeff Oien > Of course... where did you think they came from... monkeys? > > > >

RE: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
You don't think all living creatures could evolved on this planet, simply because the Earth has water and oxygen and sunlight to support life? I beleive in God, but let's be realistic here. Do you really think God just waved his hand and there appeared a chicken? Open your mind to other possibili

[PHP] Re: Error codes from 'mysql_error()'

2001-03-09 Thread Dennis Gearon
Egads, I figured it out this morning. It was the 33-1/3rd error I'd fixed and about the 6.28*10^23rd new thing I had used/learned that morning between PHP and MySQL and HTML forms. I was expecting it to print it directly to the screen just by invoking it, LOL! OH boy, I was tired. When I caught t

RE: [PHP] Advanced PHP

2001-03-09 Thread Rick St Jean
Of course... where did you think they came from... monkeys? At 04:01 PM 3/9/01 -0800, Keith Vance wrote: >Where did the chicken come from, God? > >Keith > >On Fri, 9 Mar 2001, Jerry Lake wrote: > > > The chicken did. > > > > as the Chicken is an actual chicken > > and the egg is a potential chi

[PHP] printing data using javascript with php

2001-03-09 Thread Nicole Lallande
Dear Gurus: I am trying to use javascript with my php code to output data onChange. I have read the archives and know that because javascript is client side and php is server side I cannot interact natively on the page except to pass the variables through an http request. Here is what I have don

Re: [PHP] How to protect my scripts ???

2001-03-09 Thread Aaron Tuller
use Zend Encoder. -aaron At 8:51 PM -0300 3/9/01, Marco Aurélio wrote: >Hello! > > >My case: > >My users have ftp access to their directories, then if I put my scripts >inside it, they will br able to stole! > >Is possible to use directory alias and forcetype on Apache to protect my >scripts or

RE: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
Where did the chicken come from, God? Keith On Fri, 9 Mar 2001, Jerry Lake wrote: > The chicken did. > > as the Chicken is an actual chicken > and the egg is a potential chicken. > Actuality precedes potentiality > > Jerry Lake- [EMAIL PROTECTED] > Web Designer > Europa Communicatio

RE: [PHP] Advanced PHP

2001-03-09 Thread Thor M. Steindorsson
Although it's a wee bit off topic, your logic doesn't really make sense here. If the egg is a potential chicken, doesn't that mean the egg came before the chicken? Re-read the question. It only speculates which came first. > -Original Message- > From: Jerry Lake [mailto:[EMAIL PROTECTED]

php-general Digest 9 Mar 2001 23:54:13 -0000 Issue 557

2001-03-09 Thread php-general-digest-help
php-general Digest 9 Mar 2001 23:54:13 - Issue 557 Topics (messages 43131 through 43242): Send & Receive SMS from handphone from/to PC 43131 by: toto Re: HTML book recommendation 43132 by: Greig, Euan How do I detect how many people are using a port? 43133 by: Cybe

Re: [PHP] How to protect my scripts ???

2001-03-09 Thread Rick St Jean
include them from a directory outside of their access. If they are creative they can use the fp tags to make copies, if you do not lock down your server rights. Rick. At 08:51 PM 3/9/01 -0300, Marco Aurélio wrote: >Hello! > > >My case: > >My users have ftp access to their directories, then if

Re: [PHP] Advanced PHP

2001-03-09 Thread Christopher Allen
> The chicken did. > > as the Chicken is an actual chicken > and the egg is a potential chicken. > Actuality precedes potentiality amen brotha. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] T

[PHP-CVS] cvs: php4 /ext/odbc php_odbc.c php_odbc.h

2001-03-09 Thread Frank M. Kromann
fmk Fri Mar 9 15:44:55 2001 EDT Modified files: /php4/ext/odbc php_odbc.h php_odbc.c Log: Adding a new function odbc_next_result() allowing the query to return more than one result. This can be done with a stored procedure or by sending more than one

[PHP] How to protect my scripts ???

2001-03-09 Thread Marco Aurélio
Hello! My case: My users have ftp access to their directories, then if I put my scripts inside it, they will br able to stole! Is possible to use directory alias and forcetype on Apache to protect my scripts or which's the better solution for it, any ideas ??? Regards, marcoBR -- PHP Gen

[PHP-CVS] cvs: php4 /ext/mssql php_mssql.c php_mssql.h

2001-03-09 Thread Frank M. Kromann
fmk Fri Mar 9 15:37:56 2001 EDT Modified files: /php4/ext/mssql php_mssql.h php_mssql.c Log: Adding a new function mssql_next_result() allowing the query to return more than one result. This can be done with a stored procedure or by sending more than o

RE: [PHP] Advanced PHP

2001-03-09 Thread Jerry Lake
The chicken did. as the Chicken is an actual chicken and the egg is a potential chicken. Actuality precedes potentiality Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -Original Message-

RE: [PHP] PHP Studio Website

2001-03-09 Thread James Atkinson
Err...where the heck do I download this from? The download page on that site just gives me a Javascript popup about version 2.0 being out on March 15th. It looks like an interesting editor but I'd like to try it out... - James > -Original Message- > From: Dan Cleveland [mailto:[EMAIL PR

[PHP] Sessions

2001-03-09 Thread Randy Johnson
Is there a way to have a session end if they leave my site and go to another? thanks randy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTE

Re: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
What came first the chicken or the egg? Keith On Fri, 9 Mar 2001, Kath wrote: > Yeah. I even see some PHP book authors, like Julie Meloni here on this > list. > > There is never a question, no matter how retarded, that this list or #php on > irc.openprojects.net has never been able to answer.

Re: [PHP] payment

2001-03-09 Thread Aaron Tuller
Umm, I'm not sure what you mean. You do need a an acquiring bank, we use Wells Fargo, they're pretty cheap, and knowledgeable about the internet. PayFlow supports any bank that uses FDMS Nashville plus others. http://biz.wellsfargo.com/products/merchant/internet/internet.jhtml if you want sa

[PHP] PHP Studio Website

2001-03-09 Thread Dan Cleveland
Sorry for neglecting this before when i requested a list of features that would be nice, but here's the url of the site currently... http://www.sju.edu/~dc008274/phpstudio Thanks again Dan +---+ |

Re: [PHP] payment

2001-03-09 Thread Rick St Jean
confirmed on Fu**edcompany.com At 05:54 PM 3/9/01 -0500, you wrote: >They were supposed to merge with Network 1, but they could not come up >with the money. >I read something that said they filed for chapter 11. But this means that >he smaller company >Network 1 will absorb them or buy what is

Re: [PHP] payment

2001-03-09 Thread Rick St Jean
They were supposed to merge with Network 1, but they could not come up with the money. I read something that said they filed for chapter 11. But this means that he smaller company Network 1 will absorb them or buy what is left. Those are the rumours I heard Rick At 03:38 PM 3/9/01 -0700, Nath

[PHP-I18N] Resource for PHP and other technologies

2001-03-09 Thread narsu
I developed this site http://www.hytes.com for techical resource for developers. Please take a look and let me know your feedback. -- PHP Internationalization Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

Re: [PHP] Advanced PHP

2001-03-09 Thread Kath
Yeah. I even see some PHP book authors, like Julie Meloni here on this list. There is never a question, no matter how retarded, that this list or #php on irc.openprojects.net has never been able to answer. - Kath - Original Message - From: "Krznaric Michael" <[EMAIL PROTECTED]> To: "'

Re: [PHP] Using PHP as a shell script

2001-03-09 Thread Kath
Compile PHP as CGI and you should be able to. - Kath - Original Message - From: "Alexandre Hautequest" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 09, 2001 1:07 PM Subject: [PHP] Using PHP as a shell script > Hi all. > > Can i use PHP as a shell script, like bash? O

RE: [PHP] payment

2001-03-09 Thread Boget, Chris
> How to people typically integrate payment processors with PHP? > And what processors are used most often? I know that a number > of people are scrambling after cybercash died. There is a site out > there www.opay.com that says it supports payment processors > on any platform, anyone ever use i

Re: [PHP] payment

2001-03-09 Thread Thomas Deliduka
On 3/9/2001 5:38 PM this was written: > Is this incorrect? When you say that it 'died', what are you referring to? That's what I'm inerested in. I have several sites currently using Cybercash and one client left for a month on vacation and asked before he left if the merger would affect him; di

Re: [PHP] payment

2001-03-09 Thread Rick St Jean
It says it is not a gateway but a method between code and the processor. One piece of code is supposed to work for 150 payment processors. If you need a new processor then you buy some driver from them. At 02:28 PM 3/9/01 -0800, Aaron Tuller wrote: >I use Virisign PayFlow Pro and it's so easy

Re: [PHP] payment

2001-03-09 Thread Nathan Cook
I haven't used opay.com. However I was looking at using cybercash for up and coming software I am writing. Their website talks extensively about a merger with a 'Network 1' company and now a buyout and a chapter 11 filing. The buyout, or "merger" press release says: "CyberCash Internet Payment

[PHP] Resource for PHP and other technologies

2001-03-09 Thread narsu
I developed this site http://www.hytes.com for techical resource for developers. Please take a look and let me know your feedback. Thanks Narsu -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To co

Re: [PHP] payment

2001-03-09 Thread Aaron Tuller
I use Virisign PayFlow Pro and it's so easy. ust the built in functions or just call parse_str() on the output and you're set. -aaron At 5:27 PM -0500 3/9/01, Rick St Jean wrote: >How to people typically integrate payment processors with PHP? >And what processors are used most often? I know t

Re: [PHP] payment

2001-03-09 Thread Thomas Deliduka
On 3/9/2001 5:27 PM this was written: > How to people typically integrate payment processors with PHP? > And what processors are used most often? I know that a number > of people are scrambling after cybercash died. There is a site out > there www.opay.com that says it supports payment processo

Re: [PHP-I18N] Re: Weekly Update

2001-03-09 Thread Rick St Jean
Haha never trust a company that hosts its website on geocities and has free web based email. Rick At 02:31 PM 3/9/01 -1000, [EMAIL PROTECTED] wrote: >-WEEKLY UPDATES- > >BREAKING NEWS... RECORDS WERE BROKEN... >AND MILLIONAIRRES WILL BE MADE!! > >THE ADVANTAGES OF BEING ON OUR TEAM ARE: >

[PHP] payment

2001-03-09 Thread Rick St Jean
How to people typically integrate payment processors with PHP? And what processors are used most often? I know that a number of people are scrambling after cybercash died. There is a site out there www.opay.com that says it supports payment processors on any platform, anyone ever use it? Rick #

php-i18n Digest 9 Mar 2001 22:11:56 -0000 Issue 56

2001-03-09 Thread php-i18n-digest-help
php-i18n Digest 9 Mar 2001 22:11:56 - Issue 56 Topics (messages 132 through 134): Re: Cash Offer!! 132 by: hollyjacobsemail77.excelonline.com 133 by: jannetfreebish67.juno.com Re: Weekly Update 134 by: newbrightconceptz2321.juno.com Administrivia: To subscribe to

[PHP-I18N] Re: Weekly Update

2001-03-09 Thread newbrightconceptz2321
-WEEKLY UPDATES- BREAKING NEWS... RECORDS WERE BROKEN... AND MILLIONAIRRES WILL BE MADE!! THE ADVANTAGES OF BEING ON OUR TEAM ARE: -YOU WILL GET PAYED NEXT WEEK! -WE WILL BUILD ONE SIDE OF YOUR BUSINESS FOR YOU! -WE WILL PROVIDE YOU WITH FREE NETWORKER LEADS SPECIFIC TO THIS OPPORTUNITY -WE WI

[PHP] Re: Weekly Update

2001-03-09 Thread newbrightconceptz2321
-WEEKLY UPDATES- BREAKING NEWS... RECORDS WERE BROKEN... AND MILLIONAIRRES WILL BE MADE!! THE ADVANTAGES OF BEING ON OUR TEAM ARE: -YOU WILL GET PAYED NEXT WEEK! -WE WILL BUILD ONE SIDE OF YOUR BUSINESS FOR YOU! -WE WILL PROVIDE YOU WITH FREE NETWORKER LEADS SPECIFIC TO THIS OPPORTUNITY -WE WI

RE: [PHP] Advanced PHP

2001-03-09 Thread Krznaric Michael
If I'm not mistaken, the big boys keep an eye out over here. Mike -Original Message- From: Rick St Jean [mailto:[EMAIL PROTECTED]] Sent: Friday, March 09, 2001 4:54 PM To: [EMAIL PROTECTED] Subject: [PHP] Advanced PHP Does anyone know of any other lists that are a little more advanced

[PHP] PHP switch user ???

2001-03-09 Thread NoSpeed
Hi there. Maybe this is a stupid question, i dunno, but untill now, nobody seemed to be able to answer it, so here goes. I have PHP4 running under apache as a DSO on a linux system. This is cool, it runs as nobody, and thus is fairly safe. But also very unfunctional when it comes to uploading fi

[PHP] create a directory NOT owned by the webserver user

2001-03-09 Thread Keith Vance
How do I create a directory which is owned by a user other than the user which is running the webserver? The "other" user will change all the time. So I need to be able to set the ownership of a directory, on-the-fly. I have searched the Internet and I have run across things like creating c wrap

[PHP-CVS] cvs: php4 /ext/standard basic_functions.c

2001-03-09 Thread Andrei Zmievski
andrei Fri Mar 9 13:42:27 2001 EDT Modified files: /php4/ext/standard basic_functions.c Log: @- Fixed argument checking for call_user_func* functions and allowed @ specifying array($obj, 'method') syntax for call_user_func_array. (Andrei) Index: php4/e

[PHP] Advanced PHP

2001-03-09 Thread Rick St Jean
Does anyone know of any other lists that are a little more advanced, And has a little less traffic? I am not the end all be all by any means of programming or PHP. I just want to know where the big boys hang out and learn some secrets that require some understanding. Rick ##

Re: [PHP] PHP ide features...

2001-03-09 Thread Rick St Jean
I use a fantastic program called Textpad. I love ultraedit also but what it lacks is a clip or snippets library. The functions work well... as well as the macros. The thing that the snippets or clip library needs is the ability to have a hotkey tied to each one... the drawback of a macro

RE: [PHP] file upload tutorial.

2001-03-09 Thread Jerry Lake
With the info in the manual (thanks) I keep getting this error Warning: Unable to create '/www/htdocs/uploads': Is a directory in /www/workbox/htdocs/upload.php on line 4 I have the directory chmoded to 777 what is my problem, aside from general idiocy... Jerry Lake- [EMAIL PROTECTED]

Re: [PHP] conjecate a variable to a string in a function

2001-03-09 Thread Aaron Tuller
At 1:42 PM -0500 3/9/01, Mike wrote: >Whats wrong with this? >$MaxID="select Max($Table.'ID') from $Table"; I assume you want to do: $MaxID="select Max($TableID) from $Table"; as long as you don't have a variable called $TableID that is. if you do then do: $MaxID="select Max(".$Table."ID) f

Re: [PHP] Using PHP as a shell script

2001-03-09 Thread Chris Lee
I use a script like this, place it in cron, run it once a day to search the db and email the nescisary people the reminders they request. -- Chris Lee Mediawaveonline.com ph. 250.377.1095 ph. 250.376.2690 fx. 250.554.1120 [EMAIL PROTECTED] ""John Huggins"" <[EMAIL PROTECTED]> wrote

Re: [PHP] file upload tutorial.

2001-03-09 Thread Aaron Tuller
does anyone look at the manual anymore? there's TONS of info at: http://www.php.net/manual/en/features.file-upload.php -aaron At 1:10 PM -0800 3/9/01, Jerry Lake wrote: >Anyone know where I can find a file upload >tutorial ? > >Jerry Lake- [EMAIL PROTECTED] >Web Designer >Europa Co

Re: [PHP] dynamic content again

2001-03-09 Thread Chris Lee
here is an example. count('site', ''); $result = $database->select_array('', 'site', "LIMIT $pos, $HOW_MANY"); foreach($result as $pos => $val) echo $val['site_address'] ."\n"; if ($pos_prev >= 0) echo " Back "; echo " Home "; if ( $pos_next < $product_count ) echo " Next

[PHP] libical

2001-03-09 Thread Mark Cheverton
Is anyone working on integrating libical ( http://softwarestudio.org/libical/index.html ) with php. This library seems to be in much more active development than libmcal and in active use by software developers. -Mark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-m

[PHP] file upload tutorial.

2001-03-09 Thread Jerry Lake
Anyone know where I can find a file upload tutorial ? Jerry Lake- [EMAIL PROTECTED] Web Designer Europa Communications - http://www.europa.com Pacifier Online - http://www.pacifier.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP ide features...

2001-03-09 Thread Chris Lee
I use ultraedit love it. - ftp open - line numbers and ruler - search and replace by file, highlightd text, dir - auto indent, highlight a group of text and indent or de-dent. - file::open::default dir depends on the current file open - htmltidy built in - spell check text not code. - macros - sy

Re: [PHP] ticks wont execute file on one server, but will on another

2001-03-09 Thread Chris Lee
permisions ? -- Chris Lee Mediawaveonline.com ph. 250.377.1095 ph. 250.376.2690 fx. 250.554.1120 [EMAIL PROTECTED] ""noah"" <[EMAIL PROTECTED]> wrote in message 98be51$o3u$[EMAIL PROTECTED]">news:98be51$o3u$[EMAIL PROTECTED]... is there a reason why doing something like `rm test.test

Re: [PHP] sharing variables

2001-03-09 Thread Chris Lee
sessions http://php.net/manual/en/ref.session.php sessions with cookies - will transfer across full urls - will transfer acress full form urls - will not set SID - will not transfer across multiple domainnames sessions without cookies - wil

[PHP] stdin on win

2001-03-09 Thread n e t b r a i n
Hi all, anyone know if there's a similar way to read like the linux php://stdin on a windows box? I've tried to run a simple script founded on phpbuilder.com about a shell scripting and it seems to work in some way just for the first "request" ... This a "screenshoot" of my ms-dos window: C:\P

RE: [PHP] Not isset

2001-03-09 Thread Brian Paulson
try if(!(isset($order))) { $order=$Table."ID"; } hth Thank you Brian Paulson Sr. Web Developer [EMAIL PROTECTED] http://www.chieftain.com 1-800-269-6397 -Original Message- From: Mike [mailto:[EMAIL PROTECTED]] Sent: Friday, March 09, 2001 1:34 PM To: [EMAIL PROTECTE

RE: [PHP] Not isset

2001-03-09 Thread Boget, Chris
> how do I write a Not isset as in: > if != isset($order) > { > $order=$Table."ID"; > } if( !( isset( $order ))) { } I'm big on parens. :p OR if( empty( $order )) { } Chris

[PHP] Not isset

2001-03-09 Thread Mike
how do I write a Not isset as in: if != isset($order) { $order=$Table."ID"; } mikep [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EM

  1   2   >