[PHP] QA help needed

2002-03-16 Thread James Cox
firstly, apologies for the cross post, but I urgently need a Windows 98 / PHP / PWS environment to test an issue on. if anyone could help out with that, please email me back directly. Thanks, James -- James Cox :: [EMAIL PROTECTED] :: Landonize It! http://landonize.it/ Was I helpful? http

Re: [PHP] Success Using PEAR?

2002-03-16 Thread James Arthur
On Saturday 16 Mar 2002 20:32, Bryan Henry wrote: > anyone had success using PEAR? > > I have read the documentation and been trying to use the PEAR > files that came with PHP 4.1.2 , PEAR cvs and PHP4/PEAR cvs > with no success. > > I wish there was some updated documentation, and more explanatio

Re: [PHP] building a control panel in php

2002-03-20 Thread James Arthur
On Wednesday 20 Mar 2002 02:42, Thalis A. Kalfigopoulos wrote: > > -Original Message- > > From: Miguel Cruz [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, March 19, 2002 5:49 PM > > To: Paul ... > > Cc: [EMAIL PROTECTED] > > Subject: Re: [PHP] building a control panel in php > > > > On Wed,

Re: [PHP] HTMLnetscape issue

2002-03-20 Thread James Arthur
On Wednesday 20 Mar 2002 18:11, Vlad Kulchitski wrote: > Hi, > > Sorry for repeating myself, but am lost and still can't find a solution > to the following problem, I need to specify a background image for > like the code below: > > > > > > This code works EVERYWHERE (in all browsers

[PHP] Problem with posting

2002-03-20 Thread James Arthur
I'm writing a voting script, but I have a problem with it. Voters cast their vote by submitting a form. When this form is received it is added to the database, and a session variable is set saying that they've voted. The problem is that once someone's voted they can just press reload on their

Re: [PHP] Problem with posting

2002-03-20 Thread James Arthur
On Wednesday 20 Mar 2002 19:40, Rick Emery wrote: > What do you mean "All other browsers either do not submit form data"? I mean when the user hits 'reload' the POST data is not resubmitted. Some browsers do not resubmit form data, some do, and some prompt. > What kind of user authentication ar

Re: [PHP] HTMLnetscape issue

2002-03-20 Thread James Arthur
On Wednesday 20 Mar 2002 19:43, Nathan Cassano wrote: > Yes here is a solution to this problem and I am surprised no one on this > list pointed it out. > > Simply put a transparent dot within a cell table that you wish to have > the background image display. > Netscape 4 in retarded in the fact th

[PHP] Guestbook previous 10/next 10

2002-03-21 Thread James Taylor
I have this sort of guest book that only will display 10 entries on the page at a time, after that you have the option of previous 10, and if you're not on the front page you also have next 10. I'm getting the ID of the VERY LAST POST listed on the page. So it's doing something like while ($m

[PHP] More fun with sessions

2002-03-21 Thread James Taylor
How can I get a listing of all currently active sessions? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] FAQ

2002-03-22 Thread James Taylor
Has anyone given any thought to possibly maintaining a FAQ containing the answers to the most commonly asked PHP questions on this list? I notice duplicates roll through every couple of days, and it would probably be a really nice PHP resource. Or, does one already exist? Ha. -- PHP General

Re: [PHP] FAQ

2002-03-22 Thread James Taylor
mus just said, I think that you are saying a PHP Mailing > List faq based on the q's that the mailing list gets, not the general PHP > faq. > > Scott > > -Original Message- > From: James Taylor [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 22, 2002 2:30 PM &g

Re: [PHP] IMAGE Manipulation

2002-03-22 Thread James Taylor
Hey, I'm not sure if anyone ever answered your question, but here's a little function I wrote for something similar to what you want to do and it doesn't require GD be installed. You need to modify the top portion, I just threw that in there to show you how it would work. $pic is the name of

Re: [PHP] FAQ

2002-03-22 Thread James Taylor
t on a frequent basis would be more helpful. On Friday 22 March 2002 12:05 pm, you wrote: > I just don't see what the difference is. This is a PHP mailing list which > supposedly gets questions about PHP. Why would the PHP FAQ not be the > right place for this? > > -Rasmus &g

[PHP] Advice needed

2002-03-22 Thread James Newkid
Sorry couldn't think of a better subject for this email :( This has stumped 7 people so far. I'm not an expert with php, but any help would be great. I have the following $Quantity1 $Quantity2 $Quantity3 and $Price1 $Price2 $Price3 These variables will eventually make a "chart"/database wit

[PHP] Regex Form Filter Help

2002-03-27 Thread James Taylor
I have a site where users can type whatever they want in and it posts it to a database. I'm trying to eliminate whatever types of abuse I can think of, and, since I'm using nl2br on the posts, I'm afraid a user might just hold down enter for a couple of seconds and scroll everything off the pa

[PHP] preg_replace - regex for replace string

2002-03-27 Thread James Taylor
I'm trying to do something to the effect of this for a preg_replace statement: $string = "Hello\n\n\n\n\n\n\nHow are you?\n\n\n\n\n\n\n\nHi"; $string = preg_replace("/\n\n/", "/\n/", $string); But, it appears the 'replace' portion of the function doesn't allow for regex. How can I do this so

Re: [PHP] preg_replace - regex for replace string

2002-03-27 Thread James Taylor
This is just an example. There are some cases where I need the second option to be a regular expression, the same way that you can do in Perl regex... On Wednesday 27 March 2002 02:49 pm, you wrote: > On Wed, 27 Mar 2002, James Taylor wrote: > > I'm trying to do something to the

Re: [PHP] preg_replace - regex for replace string

2002-03-27 Thread James Taylor
March 2002 02:53 pm, you wrote: > This is just an example. There are some cases where I need the second > option to be a regular expression, the same way that you can do in Perl > regex... > > On Wednesday 27 March 2002 02:49 pm, you wrote: > > On Wed, 27 Mar 2002, Ja

Re: [PHP] preg_replace - regex for replace string

2002-03-27 Thread James Taylor
Hm, nevermind my question :) I'm not thinking straight, not enough sleep. On Wednesday 27 March 2002 02:53 pm, you wrote: > On Wed, 27 Mar 2002, James Taylor wrote: > > On Wednesday 27 March 2002 02:49 pm, you wrote: > >> On Wed, 27 Mar 2002, James Taylor wrote: > >

Re: [PHP] Getting user name in text area

2002-03-28 Thread James Taylor
Well, let's see here.. $query = mysql_query("select name from users where uid = {$_SESSION['uid']}", $db); while ($name = mysql_fetch_row($query) { echo "$name[0]\n"; } hope that helps Jennifer Downey wrote: >Hi all, > >Here is what I have and what I am trying to do. > >I would like the us

[PHP] mail() function.

2002-03-30 Thread Birtch, James
eas on how to get rid of it?? "Were not satisfied until you are" James Birtch Compaq Canada OTTAWA Consumer Advisory Support * Email - [EMAIL PROTECTED] * Voice - (613) 721-3050 x 4516 * Fax - (613) 721-3070 -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] Forum with PHP, without using mySQL..

2002-04-01 Thread James Arthur
On Monday 01 Apr 2002 12:44, MiXmAsTeR wrote: > Hi, I run a Sports site. > > And need a forum, in php, that dosen't use mySQL. > > Anyone know any good, without any advertice, exept some from the one who > made it ? PHPBB v2.x and OpenBB can run on top of PostgreSQL 7.x --jaa -- PHP General Ma

[PHP] Problem with CGI mode

2002-04-01 Thread James Arthur
Hi I need to run some pages on my site in CGI mode for security reasons. I've put #!/usr/local/bin/php at the top of the script in question, and given it the .cgi extension so that apache treats it as a CGI. The script works, but the first thing it does is print out #!/usr/local/bin/php, becau

[PHP] Has anyone looked at phpinfo today?

2002-04-01 Thread James Arthur
Notice anything different? --jaa -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Connecting to multiple DB's

2002-04-01 Thread James Taylor
I host a few sites, and on usually each site will have it's own MySQL database in the background. I've decided that I want to link one site to another, and need to connect to more than one database at a time. I've found that when I try to connect to 2 or more, even if I assign the other databa

RE: [PHP] Re: Has anyone looked at phpinfo today?

2002-04-01 Thread James Cox
the php daemon. -Original Message- From: lmlweb [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 02, 2002 2:50 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: Has anyone looked at phpinfo today? who the heck was that :) "James Arthur" <[EMAIL PROTECTED]> wrote in mes

RE: [PHP] nl2br returns ? normality or a bug?

2002-04-05 Thread James Cox
actually, is not parsed in the same way as for many browsers. is XHTML, and is not a fully supported language set yet. -- James Cox :: [EMAIL PROTECTED] :: Landonize It! http://landonize.it/ Was I helpful? http://www.amazon.co.uk/exec/obidos/wishlist/23IVGHQ61RJGO/ -Original Message

Re: [PHP] nl2br returns ? normality or a bug?

2002-04-06 Thread James Arthur
On Saturday 06 Apr 2002 07:56, Miguel Cruz wrote: > On Sat, 6 Apr 2002, Justin French wrote: > > on 06/04/02 11:05 AM, Maxim Maletsky ([EMAIL PROTECTED]) wrote: > >> It DOES NOT work fine in every browser. I'd love to give you a prov, but > >> because I am lazy I will just tell you this formula:

RE: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread James Cox
Chuck, what exactly is your situation? what has happened, step by step? what OS are you on? Thanks, James -- James Cox :: [EMAIL PROTECTED] :: Landonize It! http://landonize.it/ Was I helpful? http://www.amazon.co.uk/exec/obidos/wishlist/23IVGHQ61RJGO/ -Original Message- From: Chuck

[PHP] Re: parsing a string

2001-10-18 Thread James, Yz
Hey John, something like this might work: ", $string); echo $string; ?> James "John A. Grant" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I'm reading some HTML text from a file and echoing it to > stdout.

RE: [PHP] Delivering NAMED pdf files

2001-10-19 Thread James Cox
can you paste the full text of the code as you have it? I don't see anywhere where you define the name of the file. James Cox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Politicalia admin and editor e: [EMAIL PROTECTED] :: w: http://www.politicali

RE: [PHP] Delivering NAMED pdf files

2001-10-19 Thread James Cox
George, your best bet is to have a table in your database which looks up the name of the file, based on a more friendly name. James . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Politicalia admin and editor e: [EMAIL PROTECTED] :: w: http://www.politicalia.com

[PHP] Re: Re:Date->TimeStamp

2001-10-20 Thread James, Yz
Hi Daniel, Try this: Should work ok. James "Daniel Harik" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I've tried this code: > > $timea = explode(" ",$timepostsed); > $timea1 = explode("-"

[PHP] Re: strip HTML

2001-10-20 Thread James, Yz
The easiest way would be to use strip_tags(), though you could craft your own regular expression. http://www.php.net/strip_tags James "Gary" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello All, > How would I strip all HT

[PHP] Re: Using Logical OR operator in IF statement???

2001-10-21 Thread James, Yz
Hi Brad, This worked for me: .. but I'd tend to go for a regex as a solution to what you're after, which involves less code: Just my thoughts... James "Brad Melendy" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

[PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-21 Thread James Cave
ent, but you can incorporate the two - in the style sheet, form, .form { display: inline; } and in the HTML, and IE will ignore the bits it doesn't do, as will Navigator. Hope that helps. Regards James -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

[PHP] Re: Max int value of char field? How to find...

2001-10-22 Thread James Cave
numbers as you expect, but I'm unsure whether the character values will be higher or lower than the numbers. Regards James -- 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 PROTECTED]

[PHP] mktime() problem

2001-10-23 Thread james . fairbairn
ite this we are in daylight savings (GMT+1). Would this make a difference? (I have already tried echo mktime(0,0,0,1,1,1970,0); to force non-daylight-savings, but I still get 3600.) Am I doing something wrong, or have I found a bug? Thanks, James -- PHP General Mailing List (http://w

RE: [PHP] Re: mktime() problem

2001-10-23 Thread james . fairbairn
Hi James, Yes, you're right; I got -3600. But shouldn't the time returned reflect the timezone we would be in on that date, rather than the one we are in now? Thanks for your help. James -Original Message- From: liljim [mailto:[EMAIL PROTECTED]] Sent: 23 October 2001 13:53

RE: [PHP] mktime() problem

2001-10-23 Thread james . fairbairn
Thanks, I'll use gmmktime() from now on! James -Original Message- From: DL Neil [mailto:[EMAIL PROTECTED]] Sent: 23 October 2001 13:54 To: Fairbairn,J,James,IVLH4 C; php-general Subject: Re: [PHP] mktime() problem > I'm running 4.0.6 on a Solaris 8 box. The output gi

RE: [PHP] mktime() problem

2001-10-23 Thread james . fairbairn
Oh dear, I still get -3600 when I do echo gmmktime(0,0,0,1,1,1970); Why? James -Original Message- From: Fairbairn,J,James,IVLH4 C Sent: 23 October 2001 13:57 To: [EMAIL PROTECTED] Subject: RE: [PHP] mktime() problem Thanks, I'll use gmmktime() from now on! James -Ori

[PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-23 Thread James Cave
> if your form is inside a table .. hide the tags In my experience, this just "moves" the closing whitespace to the end of the table (just like if you insert text incorrectly between a and a ). The previous post I've made using the "display: inline;" style is in fact W3C compliant. -- PHP G

Re: [PHP] Re: Forms and Netscape -- spacing problem -- Help!

2001-10-23 Thread James Cave
> I gave it a try > NN4.7 and 6.1 both ignored the 'display: inline' css in my test There was actually an error in the HTML I posted, try this: 1. form tag outside of cell 2. form tag outside of cell 3. form tag outside of cell 4. form tag outside of row 5. form tag outside of row 6. form tag o

RE: [PHP] Opening a new page when done

2001-10-24 Thread james . fairbairn
efore processing is complete: hope this helps. james -Original Message- From: Roy W [mailto:[EMAIL PROTECTED]] Sent: 24 October 2001 14:39 To: [EMAIL PROTECTED] Subject: [PHP] Opening a new page when done I have several scripts that when you complete a form it executes a PHP script. At

[PHP] re: socket question

2001-10-24 Thread James Cave
There is some source code on the php.net site which captures the credits with output buffering and then uses then in the page. Once you have the data in a variable you can do what you like to it. if (function_exists('ob_start')) { ob_start(); phpcredits(); $credits = ob_get_content

Re: [PHP] MSSQL 7.0 and PHP

2001-10-24 Thread James Cave
. > To get larger than that you have to use 'text' Sounds right to me. Regards James -- 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 PROTECTED]

RE: [PHP] Redirecting Using Header{} Function

2001-10-25 Thread james . fairbairn
However with Netscape 4.75 when I call any page that has the Header(Refresh) function I get a nasty pop up box which says "The document contains no data". I then click ok and the page loads exactly as it should but no matter what I do I can't stop this pop up box from appearing, IE, Netscape 6

RE: [PHP] Parse Error

2001-10-29 Thread james . fairbairn
might be a syntax error in the .lib file you are including (missing ";", possibly)... let me know. -Original Message- From: Alberto [mailto:alberto arround [EMAIL PROTECTED]] Sent: 29 October 2001 10:14 To: [EMAIL PROTECTED] Subject: [PHP] Parse Error Parse error: parse error, expecting

RE: [PHP] Parse Error

2001-10-29 Thread james . fairbairn
oops, missed that one! -Original Message- From: Alexander Weber [mailto:[EMAIL PROTECTED]] Sent: 29 October 2001 10:08 To: Alberto Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Parse Error Just use var $VAL_ID; Names of variables always start with a "$" sign. Alberto wrote: > > Parse e

[PHP] Streaming context

2001-10-29 Thread James Webb
I'm trying to find a way to make streaming context for an internet game web site, like continual updates from the game and game info for players, I was looking around but can't find a function to help me, if you can point me in the right direction please drop me a line - James

[PHP] Multiviews and GET requests no longer working?

2001-11-16 Thread James Green
.ini file, nothing in the php.ini or httpd.conf files appears to have changed. I'm at a loss. Please help! Thanks, James Green -- 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

Re: [PHP] quick friday query

2001-11-16 Thread James Green
On Fri, 2001-11-16 at 17:49, Caspar Kennerdale wrote: > I am writing files to my server using > > $fp = fopen("myfile.txt", "w"); > > this all works. However in the php manual it says that by using the "w" > switch that php will create the file if it doesn exist > > However this does not seem t

Re: [PHP] Multiviews and GET requests no longer working?

2001-11-17 Thread James Green
On Fri, 2001-11-16 at 17:49, James Green wrote: > If I call foo?id=1, not only is the id variable not set, > _SERVER[QUERY_STRING] isn't either. Cookies and session variables work > fine, it's just variables passed via GET. If I turn off Multiviews, the > variables come thro

Re: [PHP] Multiviews and GET requests no longer working?

2001-11-17 Thread James Green
On Fri, 2001-11-16 at 17:49, James Green wrote: > If I call foo?id=1, not only is the id variable not set, > _SERVER[QUERY_STRING] isn't either. Cookies and session variables work > fine, it's just variables passed via GET. If I turn off Multiviews, the > variables come thro

[PHP] configure problem: --with-mysql=/what exactly?

2001-11-19 Thread James Green
up the currect socket path. Many thanks, James Green -- 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 PROTECTED]

[PHP] parent:: constructor

2001-11-22 Thread James Stewart
for one section of it. cheers. James. -- James Stewart http://www.britlinks.co.uk -- 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 PROTECTED]

Re: [PHP] Need high bandwidth provider for my Asian community site

2001-12-13 Thread James Stewart
he white space is necessary to separate the element name from its closure. All major browsers will recognise but if you want to be XHTML compliant, should be used. James. -- James Stewart http://www.britlinks.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] postgres session handling

2001-12-17 Thread James Gregory
che/vhosts/600xl/httpdocs/fe_login.php* on line *44* Keep in mind that this is all code which worked perfectly with the bulit in session handler before. Any ideas? Thanks, James. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

RE: [PHP] telneting sockets help..

2001-12-18 Thread James Cox
. \n"; } ?> Hope that helps, James Cox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . James Cox :: Senior Support Engineer Wherewithal, Inc. e: [EMAIL PROTECTED] Wherewithal. Capture Creative Connections. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . > -

[PHP] fsockopen / fopen

2001-12-20 Thread James Cox
Anyone know what errno 0 is for fsockopen? Thanks, . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . James Cox :: Senior Support Engineer Wherewithal, Inc. e: [EMAIL PROTECTED] Wherewithal. Capture Creative Connections

[PHP] Most secure way to send a password

2001-12-21 Thread James Arthur
Hi The most insecure part of entering a password in a web form is when you click "submit" and your password is sent in plain text form to your next PHP script. Is there any way around this without using JavaScript? How secure is it to use HTTP_AUTH? Cheers --jaa __

RE: [PHP] How to parse an XML document

2001-12-23 Thread James Cox
http://www.php.net/manual/en/ref.xml.php HTH. James Cox > -Original Message- > From: PHP Rules [mailto:[EMAIL PROTECTED]] > Sent: 23 December 2001 10:15 AM > To: [EMAIL PROTECTED] > Subject: [PHP] How to parse an XML document > > > Hi fellas. > > I would

RE: [PHP] Looking for a function

2001-12-24 Thread James Cox
www.php.net/urlencode Merry Christmas! James Cox > -Original Message- > From: Valentin V. Petruchek [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 24, 2001 3:58 PM > To: PHP > Subject: [PHP] Looking for a function > > > Hello, cannot find function

[PHP] Supplied argument is not a valid PostgreSQL result resource

2001-12-24 Thread James Arthur
Hi. I've been getting the following error: Warning: Supplied argument is not a valid PostgreSQL result resource in dbasefunctions.php on line 87 The error occurs in the following function: function dbFetchRow($result,$num) { global $wireddb_h; $r = pg_fetch_row($result,$num);

RE: [PHP] Client side fatal PHP error

2001-12-25 Thread James Cox
ot;)){ do.. } What you are doing is executing the substr and strtoupper many times, which, on a slow connection which may have backlog (thus slower time for the html stream buffer to be delivered), it could timeout. More detail on a: the error, and b: the code *in context* would help. Regards

RE: [PHP] Client side fatal PHP error

2001-12-25 Thread James Cox
lities here for potential errors, (like in many things) that it is hard to pinpoint what might be wrong. If it helps, i am more than happy to look at your code and see if i can break it. Regards, and now christmas day is drawing to a close, merry new year :) James Cox -- [EMAIL PROTECTED] Please alway

RE: [PHP] trim string

2001-03-21 Thread James Moore
he result in in > array. I separated them by using "," . > > I want at the end of the string to be trim off. Unfortunately I tried > all the string function such as chop,trim and substr but they seem like > can't manage to trim the end of the string. Please help me. http

RE: [PHP] Move data from one MySql table to another?

2001-03-22 Thread James Atkinson
give it this SQL: INSERT INTO new_table (name, address) VALUES SELECT name, address FROM old_table; Hope that helps - James > -Original Message- > From: YoBro [mailto:[EMAIL PROTECTED]] > Sent: March 22, 2001 3:20 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Move data from one

RE: [PHP] IP of server?

2001-03-28 Thread James Moore
e to php.ini that gets read at startup and is cached from then > on. Any ideas? Why not test for the enviromental var, if its not there then call your function, if it is use it? James -- James Moore [EMAIL PROTECTED] PHP: http://www.php.net/ PHP QA Team: http://qa.php.net/ PHP-GTK: http://g

RE: [PHP] No php.ini?

2001-03-28 Thread James Atkinson
Or create a phpinfo file containing And that will tell you the location of php.ini. - James > -Original Message- > From: Peter Houchin [mailto:[EMAIL PROTECTED]] > Sent: March 28, 2001 3:13 PM > To: Zhu George-CZZ010; [EMAIL PROTECTED] > Subject: RE: [PHP] No php.in

RE: [PHP-CVS] cvs: php4 /ext/midgard config.m4 config.m4.session

2001-03-29 Thread James Moore
> abThu Mar 29 02:35:33 2001 EDT > > Modified files: > /php4/ext/midgard config.m4 config.m4.session > Log: > - Typo fixed > - config.m4.session updated to config.m4 What does this fix do?? does it need to be included in 4.0.5?? or will ming wor

RE: [PHP-CVS] cvs: php4 /ext/midgard config.m4 config.m4.session

2001-03-29 Thread James Moore
> On Thu, Mar 29, 2001 at 11:50:29AM +0100, James Moore wrote: > > > > > abThu Mar 29 02:35:33 2001 EDT > > > > > > Modified files: > > > /php4/ext/midgard config.m4 config.m4.session > > > Log: > > >

[PHP-CVS] cvs: php4 / run-tests.php

2001-03-29 Thread James Moore
jmoore Thu Mar 29 04:07:38 2001 EDT Modified files: /php4 run-tests.php Log: Output php version at end of tests. Index: php4/run-tests.php diff -u php4/run-tests.php:1.21 php4/run-tests.php:1.22 --- php4/run-tests.php:1.21 Wed Mar 21 08:01:52 2001 ++

RE: [PHP] PHP SITE REDESIGN - What happened to older source files?

2001-03-30 Thread James Moore
The files are no longer avaible form the site but are still avalible via cvs (cvs.php.net) just checkout the files you want from the distributions directory. I wouldnt advise using anything less recent than 4.0.4pl1 though due to security issues in previous versions. James -- James Moore [EMAIL PROTE

[PHP] php editors

2001-03-30 Thread James Crowley
You might also be interested in Developers Pad http://www.developerspad.com/ It's free and open source too ;-) Regards, - James Editor, VB Web == Web - http://www.vbweb.co.uk Email - [EMAIL PROTECTED] ICQ# - 60612011 == > -Original Message

RE: [PHP] phpinfo unneeded

2001-03-30 Thread James Moore
couse it's a free server. > > > > is it possible or it's just a stupid question? > just disable it via the php.ini settings using disable_functions= James -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/midgard .cvsignore ChangeLog INSTALL LICENSE Makefile.in README.session article.c attachment.c calendar.c config.m4 config.m4.session element.c event.c eventmember.c file.c group.c host.c image.c mail.c member.c mgd_access.h mgd_article.h mgd_attachment.h mgd_calendar.h mgd_element.h mgd_errno.pl mgd_event.h mgd_eventmember.h mgd_file.h mgd_group.h mgd_host.h mgd_image.h mgd_internal.h mgd_mail.h mgd_member.h mgd_oop.h mgd_page.h mgd_pageelement.h mgd_pagelink.h mgd_person.h mgd_preferences.h mgd_preparser.h mgd_session.h mgd_sitegroup.h mgd_snippet.h mgd_snippetdir.h mgd_style.h mgd_topic.h midgard.c mkall oop.c page.c pageelement.c pagelink.c parameter.c person.c php_midgard.h preferences.c preparser-parser.y preparser-scanner.l preparser.c session.c session.modules.c session.sql sitegroup.c snippet.c snippetdir.c style.c topic.c

2001-03-31 Thread James Moore
jmoore Sat Mar 31 16:35:50 2001 EDT Removed files: (Branch: PHP_4_0_5) /php4/ext/midgard topic.c style.c snippetdir.c snippet.c sitegroup.c session.sql session.modules.c session.c README.session preparser.c

RE: [PHP] ZEND Encoder

2001-04-01 Thread James Moore
probably more hassle than actually rewriting the same functionality themselves (IE thats a no its pretty much impossible to retrive source code from encoded files). James -- James Moore [EMAIL PROTECTED] PHP Web Scripting: http://www.php.net/ PHP QA Team: http://qa.php.net/ PHP-GTK: http://gtk.

RE: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread James Moore
o be able to justify your > choices. Sounds like a suit who wants to be a techie sure your doing the right job ;) James -- 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 adminis

RE: [PHP] Installing PHP as cgi and as self.

2001-04-02 Thread James Moore
> Hello, > > Can I install php as a cgi and install it as its own program? On a redhat > 7.0 box Apache 1.3 > > Thanks Brandon? Yep, cgi is the same as a command line interpreter. Just ./configure and dont enable any of the sapi's James -- PHP General Mailing List (

RE: [PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4

2001-04-02 Thread James Moore
Rasmus, please could you add *.chm to cvs wrappers please so the compiled helpfiles in PHPWEB arnt corrupted anymore when they are added. I dont think my Karama allows me to do this myself (I know you can cvs add -kb file.chm but someones bound to forget to do so in the future). Thanks James

RE: [PHP] Starting a Forum?!

2001-04-02 Thread James Moore
take a look at http://www.php.net/manual/en/function.htmlspecialchars.php and http://www.php.net/manual/en/function.htmlentities.php Cheers, James -- 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] VRML and PHP

2001-04-02 Thread James Moore
> > Since PHP comes from a preprocessor and you can create VRML Code > with it, it > is > possible. Just set .vrml as your extension in the config file and > implement > PHP tags. Yep totally... James -- PHP General Mailing List (http://www.php.net/) To unsubs

RE: [PHP] nl2br

2001-04-03 Thread James Moore
> On Tuesday 03 April 2001 01:42, you wrote: > > Hello > > > > In PHP there is an instruction : nl2br . > > Does anybody know if there is something similar in Perl??? > > Well, you'd think Perl experts would know this a bit better that PHP > e

[PHP] Reading from a webpage

2001-04-04 Thread James Kneebone
see or whether it is the underlying source code. I understand that depending on what it is will mean changes to the way I retrieve the information. If you need additional information, please contact me and let me know. Thank-you. James -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] PHP.net is slow

2001-04-04 Thread James Moore
just grab a copy and install locally from http://snaps.php.net/ A quick rewrite rule/browser based java script etc will do exactly the same thing as php.net/functioname does but quicker. - James -- James Moore [EMAIL PROTECTED] PHP Web Scripting: http://www.php.net/ PHP QA Team: http

[PHP] Update All fields?

2001-04-06 Thread James Holloway
ock :) Thanks in advance. -- James -- 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 PROTECTED]

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

2001-04-10 Thread James Moore
t a List by tomorrow and then an RC with any fixes tomorrow night then two days testing and release on Friday, otherwise release on monday if there are still unresolved issues. -James -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

RE: [PHP] Form security

2001-05-24 Thread James Stevens
referer. Checking for these items before processing the form should be pretty good. James -Original Message- From: phpman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 10:04 AM To: [EMAIL PROTECTED] Subject: [PHP] Form security Since nobody answered my last question (or any of them

[PHP] General Coding Question

2001-06-20 Thread James Stevens
Does it have any effect on performance in either case if a file is completely done in PHP(1) or interspersed with PHP(2). (1) "; ... ?> (2) ... ... Also, and this is personal preference, which is easier to read/debug? James -- PHP General Mailing List (http://www.php.net/) To uns

RE: [PHP] Parse PHP inside a variable

2001-06-21 Thread James Atkinson
I'm in the same boat, I've tried eval() but it dosan't like mixing PHP and HTML code... I've tried the suggestions listed in the php.net manual too to no avail... - James > -Original Message- > From: Lenar Lõhmus [mailto:[EMAIL PROTECTED]] > Sent: June

[PHP] PHP UK Usergroup Meeting

2001-06-22 Thread James Moore
coming please get your tickets as soon as possible so we can cater for the correct number of people. Hope to hear from you soon. - James -- James Moore [EMAIL PROTECTED] http://www.perl.com/search/index.php - we must be doing something right -- PHP General Mailing List (http://www.php.net

RE: [PHP] Is this a joke?!

2001-06-22 Thread James Moore
> Is this a joke? > http://www.perl.com/search/index.php > > *hehe* I see someone has been reading my sig, and no its for real. - James -- James Moore [EMAIL PROTECTED] http://www.perl.com/search/index.php - we must be doing somthing right -- PHP General Mailin

RE: [PHP] Oracle and PHP

2001-06-26 Thread James Atkinson
need the Oracle client libs installed. - James > -Original Message- > From: Dunaway, Brian [mailto:[EMAIL PROTECTED]] > Sent: June 26, 2001 7:25 AM > To: '[EMAIL PROTECTED]' > Subject: RE: [PHP] Oracle and PHP > > > >I'm a newbie in PHP, what should I

RE: [PHP] Filtering out \ when a ' is user entered?

2001-06-27 Thread James Cox
I might be wrong, but if you did something like this.. would work quite well, I think. James Cox -Original Message- From: Marcus James Christian [mailto:[EMAIL PROTECTED]] Sent: 27 June 2001 05:19 To: [EMAIL PROTECTED] Subject: [PHP] Filtering out \ when a ' is user entered?

RE: [PHP] file("http://www.php.net") error?

2001-06-28 Thread James Cox
You will also find that file(); may have been disabled - due to the possible security issues.. ie file ( /etc/shadow); or file (/etc/passwd); I believe that may apply to fopen, too. James -Original Message- From: atan [mailto:[EMAIL PROTECTED]] Sent: 23 June 2001 02:46 To: [EMAIL

[PHP] wierd array problem using mysql_fetch_array and mssql_fetch_array

2001-06-29 Thread James Crowley
ry in a mess, as #some very weird values are returned... } echo "INSERT INTO dir_items (authorid,url) VALUES ($data[memberid],'$data[url]')"; } Can any one tell me why this is happening, and any way to work around it? Regards, - James Editor, V

RE: [PHP] search for a better php source code viewer

2001-06-29 Thread James Crowley
How about Developers Pad? It's free, and open source ;-) (but unfortunately for windows only) http://www.developerspad.com/ Regards, - James Editor, VB Web == Web - http://www.vbweb.co.uk Email - [EMAIL PROTECTED] ICQ# - 60612011 Fax - +44(0)87070

Re: [PHP] Question on Commercial Offerings

2001-06-30 Thread James Moore
o make it all in PHP but somehow protect > the code. Any ideas? http://www.zend.com/zend/products.php#encoder - James -- 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 PROTECTED]

[PHP] setting up / configuring mail()

2001-06-30 Thread James Cox
hey does anyone know any good resource sites or documents about configuring the mail services for php so it works? Thanks, James Cox. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . James Cox :: Creative Director :: AWP imaJes t: +44 (0)7968 349990 | f: +44 (0

<    2   3   4   5   6   7   8   9   10   11   >