[PHP-CVS] cvs: php4 /ext/mnogosearch README php_mnogo.c php_mnogo.h

2001-02-05 Thread Sergey Kartashoff
gluke Mon Feb 5 00:42:54 2001 EDT Modified files: /php4/ext/mnogosearch README php_mnogo.c php_mnogo.h Log: Fixed mnogosearch protos. Fixed mnogosearch functions return values. A bug with capital letters break search has been fixed. @- Fixed

RE: [PHP] Session With Cookies

2001-02-05 Thread Eelco de Vries
no offense for anyone at all. I was just wondering myself and threw it in the group discussion. Eelco. I never wanted this question to be an offense for anyone. I thank you all for your answers. Regards PHPLover Lux [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] email function's sender

2001-02-05 Thread Michel Boucey
Hi ! i've the following trouble with php: Since I've set sendmail_path to /var/qmail/bin/inject in php3.ini, all emails coming from the http client come from me, i.e. my email address on our server, and not from the apache client name, http ... What's wrong in my conf ... Thanks for help ...

[PHP] strange Compiling Errors / PHP4.0.4pl1

2001-02-05 Thread Thomas Weber
Hi, i've compiled and installed PHP4.0.4pl1 on two systems without problems, but on the third i get strange errors. The ./configure works, but at the make i get some errors like "linux/limits.h: No such file or directory", even this file is in /usr/include/. I have copied limits.h and errno.h to

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

2001-02-05 Thread James Moore
jmoore Mon Feb 5 02:18:14 2001 EDT Modified files: /php4/ext/standard credits.c Log: Adding Sebastian Bergmann to QA team list. Index: php4/ext/standard/credits.c diff -u php4/ext/standard/credits.c:1.3 php4/ext/standard/credits.c:1.4 ---

RE: [PHP-CVS] cvs: php4 /win32 time.c

2001-02-05 Thread James Moore
I don't think you should be using static variables in the functions. Don't forget that you might have more than one thread accessing this function at a time (unless you came to the conclusion that a race here can't do any harm). I dont think race conditions here will do any real harm but

Re: [PHP] attempt to use an empty IV with mcrypt

2001-02-05 Thread Christian Reiniger
On Monday 05 February 2001 06:13, [EMAIL PROTECTED] wrote: I get the following warning when I turn on logging... Warning: attempt to use an empty IV, which is NOT recommend in /home/local/apache/htdocs/encrypt.php on line 21 Here is the code and which line is Nr. 21? $key = "testing";

Re: [PHP] please help (network admin via web)

2001-02-05 Thread Christian Reiniger
On Monday 05 February 2001 08:01, niraj shah wrote: I am a 20 year old student doing a research project and I would like to have network administration via web. That is I want to change IP address os the system via web, want to do dns settings and also would like to do proxy setting via web

Re: [PHP] manage number of rows displayed

2001-02-05 Thread Christian Reiniger
On Monday 05 February 2001 21:23, [EMAIL PROTECTED] wrote: After I run a query, how do I set the number of rows returned to display as 3 or 4 columns in a page instead of one column as usual? Ok, I gather from this that you use some Utility X to query database Y (you don't do it in PHP), and

[PHP] Howto return multidimensional arrays from a PHP module

2001-02-05 Thread Thomas Wentzel
Hi all, I've been using array_init and add_assoc_xxx to return an array from within my PHP module... But how would I go about returning the following stucture Array (Array (Name, Type, Size)) tia T. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] Howto return multidimensional arrays from a PHP module

2001-02-05 Thread Soeren Staun-Pedersen
On Mon, 5 Feb 2001, Thomas Wentzel wrote: Hi all, I've been using array_init and add_assoc_xxx to return an array from within my PHP module... But how would I go about returning the following stucture $a = array(1,2,3,4); $b = arrar("foo"=1,"bar"=2); return $a; would work, as well as

RE: [PHP] Including Virtual Paths

2001-02-05 Thread PHPBeginner.com
You can then create your own own. ... Just declare a variable called $DOCUMENT_ROOT = 'c:\the\path\to\your\web\tree\' somewhere in configuartion files of your website, or even as include_path in PHP.ini Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins)

RE: [PHP] db paging with MS Sql

2001-02-05 Thread PHPBeginner.com
It is something like: SELECT * FROM table LIMIT 0,10 and then on the next page the limit becomes 10,20 and so on A code ? ... hm ... not sure ... but if you get any software that does this kind of list it could give a more precise idea on what I am talking here about... Sincerely,

RE: [PHP] Replacing A Word in HTML page

2001-02-05 Thread PHPBeginner.com
a Replacement using Case-Insensitive Regular Expression. read it here : www.phph.net/eregi-replace Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: phpLover [mailto:[EMAIL

RE: [PHP] Email Selected Data

2001-02-05 Thread PHPBeginner.com
you need to have the $content line with (.) operator: for ($i=0; $i$num_rows; $i++) { mysql_data_seek($SQLResult, $i); $array=mysql_fetch_array($SQLResult); $content .= printf("First Name: %s\nLast Name: %s\n",$array['FirstName'], $array['LastName']); } mail($MAIL, "Order", $content ,

RE: [PHP] manage number of rows displayed

2001-02-05 Thread PHPBeginner.com
You don't really need a LIMIT statement in here. There are still 20 Records to be shown on the page, right? The problem you have is the layout ... then juts create (in your loop) the table in such a way that each 5 records (or better say ~Num/4) will output some new thing to compose your

[PHP] Possible bug in pg_connect (4.0.3.pl1) ?

2001-02-05 Thread Evelio Martinez
Hi! under 4.0.3pl1 Why this sentence works ? $conexion2 = pg_Connect("host=$servidor user=$usuario password=$pass dbname=$bd port=$puerto"); and this one does not ? $conexion2 = pg_Connect("host=$servidor port=$puerto user=$usuario password=$pass dbname=$bd"); It issues the following

[PHP] RE: php-general Digest 2 Feb 2001 00:51:13 -0000 Issue 487

2001-02-05 Thread Tim Ward
If you want to do something like this you're better off with a while loop $x = 1; while($x 10) { // do stuff with x if (whatever) continue; $x++; }; incremeting a while loop instead of for seems daft until you want to manipulate the incremented value within the loop.

Re: [PHP] Howto return multidimensional arrays from a PHP module

2001-02-05 Thread Thomas Wentzel
Thomas Wentzel wrote: Hi Sren, Thank you very much for your answer, but I'm afraid that it isn't that usefull to me... I don't have the luxury of using PHP as my PHP module is written in C!! T. Soeren Staun-Pedersen wrote: On Mon, 5 Feb 2001, Thomas Wentzel wrote: Hi all,

[PHP] RE: Variables within functions, out?

2001-02-05 Thread Tim Ward
-Original Message- From: James, Yz [mailto:[EMAIL PROTECTED]] Sent: 01 February 2001 22:22 To: [EMAIL PROTECTED] Subject: Variables within functions, out? Hey guys. Can I firstly say, thanks to all of you who helped me out with my last question about importing MS Access

Re: [PHP] Howto return multidimensional arrays from a PHP module

2001-02-05 Thread Phil Driscoll
Thomas Wentzel wrote: Hi Sren, Thank you very much for your answer, but I'm afraid that it isn't that usefull to me... I don't have the luxury of using PHP as my PHP module is written in C!! Repost your question to the php-dev list. That's where the people who know this stuff hang out.

[PHP] Breaking up a line and using the text?

2001-02-05 Thread Sam
Hi all, I was wondering if it is possible to break up a line of text from a database, and split it into separate links, eg Original line Hi my name is Sam Rose Which can then be broken down into Hi My Names is Sam Rose Thanks in advance Sam

[PHP] job search/posting software

2001-02-05 Thread Chuck Barnett
Does anyone know of any good software for creating a job posting/search service? Thanks, Chuck -- 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

[PHP] Character translation in IE

2001-02-05 Thread Patrick Anderson
Hi, I am using php, mysql and apache on a linuxserver to create some user home pages, and I have a problem with names including special chars. If I retrieve an url including for example /photos/BendseMartin97.jpg everything is ok using netscape, but it doesn't display correct using IE. Apache

[PHP] XML-DOM

2001-02-05 Thread Thomas Brusa
hello I'm trying to parse and change a loaded xml-file using the DOM module. I need to remove certain nodes and append new ones. Is it really true that you can't remove a childnode while working with dom. in perl this would look somehow like this: $doc1-removeChild($tmpele);

[PHP] FDF Toolkit uncompression error

2001-02-05 Thread Kurt R. Hoehn
Hello, I've downloaded the FDF toolkit from adobe (fdftk4_05_C.tar.Z) and it doesn't uncompress. I've noticed that other people are using it. Has anyone else experianced this same problem and if so what was your work around. Thank You Kurt -- PHP General Mailing List

Re: [PHP] Character translation in IE

2001-02-05 Thread Juan
use the following : string rawurlencode (string str) It translate any non standard URL ascii char into there %XX equivalent. PA Hi, PA I am using php, mysql and apache on a linuxserver to create some user PA home pages, PA and I have a problem with names including special chars. PA If I

[PHP-CVS] cvs: php4 /ext/mnogosearch README php_mnogo.c php_mnogo.h test.php

2001-02-05 Thread Sergey Kartashoff
gluke Mon Feb 5 05:12:15 2001 EDT Modified files: /php4/ext/mnogosearch README php_mnogo.c php_mnogo.h test.php Log: Added new Udm_Add_Search_Limit mnoGoSearch extension function. Some bugfixes and example update. @- Added new Udm_Add_Search_Limit

[PHP] Is this a bug ?

2001-02-05 Thread Sébastien ROZIER
Hello, when I use this syntax: champs[0] is a string, which is the name of an HTML form variable. class test { var champs; function verif() { for ($i = 0; $i count($this-champs) ; $i++) {

[PHP] Java Servlet Support

2001-02-05 Thread Shawn J. Wallace
Can anyone tell me exactly what using --with-servlet[=DIR] will give me? I mean, does that compile in servlet support? Are there PHP functions for executing servlets? What's the deal exactly... Shawn --- Shawn J. Wallace ([EMAIL PROTECTED]) Justweb Inc. - http://www.justweb.com

[PHP] Which Regex library?

2001-02-05 Thread Shawn J. Wallace
I'm getting some strange things happening using regex's where it will skip certain matches for no apparant reason. I know the regex itself is fine, it's too simple to screw up... So I noticed that there is a compile option --with-regex=TYPE Does anyone know exactly what the differences are

[PHP] Session-variables

2001-02-05 Thread spider
Is it ok to mail questions to this list? If so; Is there something similar like the "session variables" of ASP in PHP, or do one have to use (client-side) cookies instead? /thanks/me -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [PHP] Which Regex library?

2001-02-05 Thread Shawn J. Wallace
Ok, this is from memory, but.. I'm trying to pull the IP addresses of mail relays out of an email - and they are of the form [xxx.xxx.xxx.xxx], so I do something like: ereg('\[(0-9\.)*]', $email, $res) It finds some but not all of them in the email. What I really do is put that in a while

[PHP-CVS] cvs: php4 /ext/mnogosearch config.m4

2001-02-05 Thread Sergey Kartashoff
gluke Mon Feb 5 06:00:35 2001 EDT Modified files: /php4/ext/mnogosearch config.m4 Log: Fixed default search path. @- Fixed default search path. (gluke) Index: php4/ext/mnogosearch/config.m4 diff -u php4/ext/mnogosearch/config.m4:1.2

[PHP-CVS] cvs: php4 / TODO

2001-02-05 Thread Andrei Zmievski
andrei Mon Feb 5 06:27:10 2001 EDT Modified files: /php4 TODO Log: Whitespace. Index: php4/TODO diff -u php4/TODO:1.111 php4/TODO:1.112 --- php4/TODO:1.111 Sun Feb 4 01:20:31 2001 +++ php4/TODO Mon Feb 5 06:27:10 2001 @@ -14,10 +14,10 @@

[PHP] HTTP post requests

2001-02-05 Thread Matthew Brealey
I need to do an HTTP post from a PHP script; I want to set username=. What is the correct way to do this in PHP? -- 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

[PHP] How to save something in a Java Applet as an IMAGE file?

2001-02-05 Thread Winnie
hi, how can i do this? i have a java applet on my site which allows users to create their own drawings. i want to provide a "Email this to me" option, which will save the applet drawing and email it to the user. is there any way i can achieve this? thanks! winnie --- Outgoing mail is

Re: [PHP] Session-variables

2001-02-05 Thread Hardy Merrill
Look at http://www.php.net/manual/en/html/ref.session.html HTH. -- Hardy Merrill Mission Critical Linux, Inc. http://www.missioncriticallinux.com spider [[EMAIL PROTECTED]] wrote: Is it ok to mail questions to this list? If so; Is there something similar like the "session variables" of

[PHP] Re: One IP per Server / Cobalt RaQ4 [was 2 questions]

2001-02-05 Thread Steve Werby
"PHPBeginner.com" [EMAIL PROTECTED] wrote: Well, Cobalt Raq4 is not an easy-to-compile-on Server ... I'm just curious, what are you basing this on? Compiling Apache on it with all of the modules compiled in by default might be tricky, but in my experience compiling PHP, MySQL and anything not

Re: [PHP] HTTP post requests

2001-02-05 Thread Vahan Yerkanian
Greetings, first of all you'll need to have all of your variables in one line: like this for example $vars="var1=".urlencode($var1)."var2=".urlencode($var2); then you need to post the following $header="POST /your_script.php HTTP/1.0\r\nContent-length: ".strlen($vars)\r\n\r\n$vars\r\n\r\n";

[PHP] Making a object from one class available to all objects in the calling class

2001-02-05 Thread Stephen Maher
Hi, Can someone advise on the following. class class_y { function test() { return "test"; } } class class_x { function x { $n = new $y; } function z { $n-test(); } } I need the object of class_y available to

Re: [PHP] How to save something in a Java Applet as an IMAGE file?

2001-02-05 Thread Phil Driscoll
how can i do this? i have a java applet on my site which allows users to create their own drawings. i want to provide a "Email this to me" option, which will save the applet drawing and email it to the user. is there any way i can achieve this? We have a parametric CAD system which runs as a

Re: [PHP] Breaking up a line and using the text?

2001-02-05 Thread Steve Werby
"Sam" [EMAIL PROTECTED] wrote: I was wondering if it is possible to break up a line of text from a database, and split it into separate links, Original line Hi my name is Sam Rose Which can then be broken down into Hi My Names is Sam Rose Sam, do you want to turn them into hyperlinks?

[PHP-CVS] cvs: php4 / TODO

2001-02-05 Thread David Croft
david Mon Feb 5 06:29:21 2001 EDT Modified files: /php4 TODO Log: 2 things to do Index: php4/TODO diff -u php4/TODO:1.112 php4/TODO:1.113 --- php4/TODO:1.112 Mon Feb 5 06:27:10 2001 +++ php4/TODO Mon Feb 5 06:29:21 2001 @@ -5,12 +5,15 @@

Re: [PHP] Breaking up a line and using the text?

2001-02-05 Thread Christian Reiniger
On Monday 05 February 2001 13:59, jaskirat wrote: $string = ereg_replace(" ","\n",$string) simpler and faster: str_replace(), explode() and split() Original line Hi my name is Sam Rose Which can then be broken down into Hi My Names is Sam Rose --

Re: [PHP] Is this a bug ?

2001-02-05 Thread Steve Werby
"Sbastien ROZIER" [EMAIL PROTECTED] wrote: when I use this syntax: champs[0] is a string, which is the name of an HTML form variable. class test { var champs; When initiating a variable you need to prefix it with "$". So the line above should be: var $champs; If it's an array

Re: [PHP] Making a object from one class available to all objects in the calling class

2001-02-05 Thread Christian Reiniger
On Monday 05 February 2001 15:52, Stephen Maher wrote: Hi, Can someone advise on the following. class class_y { function test() { return "test"; } } class class_x { function x { $n = new $y; } function z {

[PHP] XML - HTML via PHP

2001-02-05 Thread Brian V Bonini
Has anyone successfully used PHP to transform XML to HTML on the fly? Can you point me to some info/tutorials. -Brian *** -- 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] How to save something in a Java Applet as an IMAGE file?

2001-02-05 Thread Winnie
Hi Phil Thanks so much for your response, I did check out the site but the applet takes forever to load n a 56 k modem. Is it possible for me to take a look at this CGI program? If not, I would really appreciate a bit more detailed idea to POST the data to a PHP program. How to this in Java?

RE: [PHP] XML - HTML via PHP

2001-02-05 Thread James Moore
IIRC sterling (with the help of lots of cherry-beer) put some docus into the CVS the otherday, checkout http://snaps.php.net/manual for the latest version of the manual with documentation for XSL functions which are now avalible in PHP. James -Original Message- From: Brian V Bonini

[PHP] HTTP post requests

2001-02-05 Thread Matthew Brealey
I need to do an HTTP post from a PHP script; I want to set username=. What is the correct way to do this in PHP? -- 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] XML - HTML via PHP

2001-02-05 Thread Steve Werby
"Brian V Bonini" [EMAIL PROTECTED] wrote: Has anyone successfully used PHP to transform XML to HTML on the fly? Yes. Can you point me to some info/tutorials. Try phpbuilder.com and zend.com. I know one or both had a tutorial that's easy to follow. You'll also need to have PHP compiled

Re: [PHP] Is this a bug ?

2001-02-05 Thread Sébastien ROZIER
OK sorry, I did put the "$", and adding = array() is still not working Thanx for any help Steve Werby wrote: "Sbastien ROZIER" [EMAIL PROTECTED] wrote: when I use this syntax: champs[0] is a string, which is the name of an HTML form variable. class test { var champs;

Re: [PHP] Problem with Zend Encoder testdrive - Win2k

2001-02-05 Thread Zeev Suraski
Carsten, This is a known limitation in the initial release of the encoder. The license file must be stored in C:\Program Files\Zend, even if your standard Program Files directory is in E:. It will be fixed in future versions. Zeev At 19:00 4/2/2001, Carsten Gehling wrote: Downloaded the

[PHP] Error on mail attachment

2001-02-05 Thread Tobias Talltorp
I get a strange error when I am trying to send a mail with an attachment. I used the class below, but I get two error messages. 1. Unknown has generated errors and will be closed by windows... 2. CGI ERROR The specified CGI application misbehaved by not returning a complete set of HTTP headers.

[PHP-CVS] cvs: php4 /ext/mnogosearch php_mnogo.c php_mnogo.h test.php

2001-02-05 Thread Sergey Kartashoff
gluke Mon Feb 5 07:15:09 2001 EDT Modified files: /php4/ext/mnogosearch php_mnogo.c php_mnogo.h test.php Log: Added new Udm_Clear_Search_Limits mnogosearch extension function. @- Added Udm_Clear_Search_Limits mnoGoSearch extension function.

[PHP] Make good money online! It's easy ....

2001-02-05 Thread NEWS!!
Please see the bottom of the message for the remove instuctions. What you are about to read is tried, true, proven and effective. Above all, this offer is utterly and ridicously excellent!! Have you ever tried or considered making money using the internet? Are you marketing or promoting

[PHP] Why doesn't this work? Please trouble-shoot my script.

2001-02-05 Thread chip . wiegand
Hi, Maybe someone can take a look at the script below and tell how to make the bottom part work the same way the top part works. The top part (select box) works where the one item chosen is written to a hidden file and passed on to the next page, then on and on through several more pages and

[PHP] RE: Making a object from one class available to all objects in the calling class

2001-02-05 Thread Tim Ward
I haven't tested this, but assuming you meant an instance of class_y being available to each instance of class_x ... class class_x { var y_of_x; function class_x() // i.e. constructor { $this-y_of_x = new class_y(); } function x {

[PHP] array max min

2001-02-05 Thread rui
Hi there, i have a little problem, suppose i have a multidimensional array ex: row[monthnr][daynr][hour][numberofusers] row[monthnr][daynr][hour][numberofmails] row[monthnr][daynr][hour][numberofdownloads] the values in the array are a sql

[PHP] GD

2001-02-05 Thread Brandon Orther
Hello, Does anyone have a tutorial getting started with the GD lib? Thank you, Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364 www.webintellects.com -- PHP

Re: [PHP] array max min

2001-02-05 Thread Steve Werby
[EMAIL PROTECTED] wrote: suppose i have a multidimensional array ex: row[monthnr][daynr][hour][numberofusers] row[monthnr][daynr][hour][numberofmails] row[monthnr][daynr][hour][numberofdownloads] the values in the array are a sql result query, soh

RE: [PHP] job search/posting software

2001-02-05 Thread Nathan Cassano
At CJHunter.com we use swish-e http://sunsite.berkeley.edu/SWISH-E/ in conjunction with custom php scripts to make our job and resumes searches. -Original Message- From: Chuck Barnett [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 4:46 AM To: PHP General List Subject: [PHP]

[PHP-I18N] Make good money online! It's easy ....

2001-02-05 Thread NEWS!!
Please see the bottom of the message for the remove instuctions. What you are about to read is tried, true, proven and effective. Above all, this offer is utterly and ridicously excellent!! Have you ever tried or considered making money using the internet? Are you marketing or promoting

php-i18n Digest 5 Feb 2001 15:58:41 -0000 Issue 49

2001-02-05 Thread php-i18n-digest-help
php-i18n Digest 5 Feb 2001 15:58:41 - Issue 49 Topics (messages 110 through 111): Invitation to a new Web site on politics and culture 110 by: editor.schenkreport.com Make good money online! It's easy 111 by: NEWS!! Administrivia: To subscribe to the digest, e-mail:

[PHP] AS400 SQL Errors and Resources

2001-02-05 Thread Karl J. Stubsjoen
Hello, I reallize that the SQL syntax should be similar among all DB's which allow SQL, but there are slight differences amongst them. With that said, I have written an SQL statement to the AS400 and am getting errors back. So, and I don't have ANY, I need a site to visit where I can reference

[PHP] Cobalt RaQ

2001-02-05 Thread szii
After hearing about "Coalt RaQ" a number of times on the list, I thought I'd cruise over and check them out. After doing so, I'm of the opinion that I'm missing something. $1,200 USD for a 300Mhz 1u box? $2,699 for a $450 w/256M RAM? $3,599 for a $450 w/512 RAM and a dual 30G HDs? What am I

Re: [PHP] array max min

2001-02-05 Thread rui
On 05-Feb-2001 Steve Werby wrote: [EMAIL PROTECTED] wrote: suppose i have a multidimensional array ex: row[monthnr][daynr][hour][numberofusers] row[monthnr][daynr][hour][numberofmails] row[monthnr][daynr][hour][numberofdownloads] the values in the

Re: [PHP] Java Servlet Support

2001-02-05 Thread Alex Akilov
Shawn, The PHP distribution contains various SAPIs (server API's). Examples are CGI, Apache, ISAPI, NSAPI and Servlet. Each of these SAPIs is optimized to host the PHP interpreter in the respective environment. Thus, if you want to run PHP in Apache, you can use the Apache SAPI (also known as

Re: [PHP] Cobalt RaQ

2001-02-05 Thread Julian Morcinek
I'ts also the small footprint (ideal for racking at large ISP's and Data Centres: the prime market positioning of these boxes) and excellent MTBF's (they just keep on trucking..) You can also install SSH to maintain an encrypted 'telnet' session. Julian - Original Message - From: "K.M.

Re: [PHP] Why doesn't this work? Please trouble-shoot my script.

2001-02-05 Thread chip
I tried your suggestion, as you can see from the script below, but it still does not work, I get the word 'array' where I should get the selected options. --

Re: [PHP] array max min

2001-02-05 Thread Steve Werby
[EMAIL PROTECTED] wrote: i thought about that, but i gave up on my first attempt on doing so, because mysql complained about my query, it seems that it doesn't allow to use the max() function with a sum() function, an example of the query is: SELECT month, daynr, hour,

[PHP] GD for: PHP on WIN

2001-02-05 Thread Brandon Orther
Hello, Can anyone tell me a simple way to install the GDlib for php on a windows machine? Thank you, Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364 www.webintellects.com

Re: [PHP] GD for: PHP on WIN

2001-02-05 Thread Alexander Wagner
Brandon Orther wrote: Can anyone tell me a simple way to install the GDlib for php on a windows machine? Some binary PHP-Distrobutions on php4win.de include GDlib. Wagner -- Three may keep a secret, if two of them are dead. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Off the point! (Apache)

2001-02-05 Thread Scott Fletcher
Hi! Anyone know the url address for the apache newsgroup? I don't seem to be able to find one. Just wanting to ask a question or two at the apache newsgroup. The questions are is there every a ModSSL and OpenSSL that would work on windows machine, along with apache and php? Somebody

Re: [PHP] include files

2001-02-05 Thread Steve Werby
"David VanHorn" [EMAIL PROTECTED] wrote: I know this works, in footer.inc, to pull up nomenu. ? include("/home/dvh/public_html/footer-nomenu.inc")? However, is there a more "generic" way to specify the server root as the path? I'd rather not expose my directory structure in the PHP code.

[PHP] saving images from mysql to file

2001-02-05 Thread Phillip M.(Mike) Bishop
I have a mysql database of images that I would like to save each image to a file on my server. Hw do I read the image from mysql and write it to a file? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] Cobalt RaQ

2001-02-05 Thread szii
1u is 1u. There's no difference in size between the RaQ and a standard 1u box, like the ones I described in my previous post. -Szii At 05:32 PM 2/5/2001 -, Julian Morcinek wrote: I'ts also the small footprint (ideal for racking at large ISP's and Data Centres: the prime market positioning

RE: [PHP] include files

2001-02-05 Thread Brian V Bonini
DOCUMENT_ROOT ??? http://php.net/manual/en/language.variables.predefined.php -Original Message- From: David VanHorn [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 12:16 PM To: [EMAIL PROTECTED] Subject: [PHP] include files I've got kind of a deep page structure,

[PHP-CVS] cvs: php4 / README.CVS-RULES

2001-02-05 Thread Andrei Zmievski
andrei Mon Feb 5 09:11:32 2001 EDT Modified files: /php4 README.CVS-RULES Log: One more notice about using names with NEWS entries. Index: php4/README.CVS-RULES diff -u php4/README.CVS-RULES:1.7 php4/README.CVS-RULES:1.8 ---

[PHP] How to reference global variables in strings

2001-02-05 Thread Karl J. Stubsjoen
If you don't prefix a global variable with $ then how can you interpit a global variable within a string? AS IN: define ("MY_PATH", "/home/me/"); print("This is My Path: MY_PATH or is it?"); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] GD font errors

2001-02-05 Thread Brandon Orther
Hello, I am trying to get started with GD and I am gettign an error saying there isn't a font. br bWarning/b: Could not find/open font in bc:\apache\htdocs\sitemaestro\gd\test.php/b on line b4/bbr br bWarning/b: Could not find/open font in bc:\apache\htdocs\sitemaestro\gd\test.php/b on line

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

2001-02-05 Thread Andrei Zmievski
andrei Mon Feb 5 09:37:50 2001 EDT Modified files: /php4/ext/standard basic_functions.c Log: Allow calling static methods via call_user_method_* functions. Index: php4/ext/standard/basic_functions.c diff -u php4/ext/standard/basic_functions.c:1.300

RE: [PHP] include files

2001-02-05 Thread David VanHorn
At 12:50 PM 2/5/01 -0500, Brian V Bonini wrote: DOCUMENT_ROOT ??? http://php.net/manual/en/language.variables.predefined.php Ok, but having read the docs you pointed to (thanks), I still don't see how to use it in an include directive. I assume that since the vhost is specified to use

[PHP] XML methods(SAX/expat)

2001-02-05 Thread [EMAIL PROTECTED]
When parsing a CDATA field that's being read in from a file, if the fread() buffer fills up, does it make two calls to the CDATA or does it wait for the closing tag to show up before firing off to the handler? while ($data = fread($fp,1)) // yes, I know you shouldn't use '1', but it's an example

[PHP] uploading file

2001-02-05 Thread Shane McBride
OK, I'm not sure if the file is getting uploaded or not, and it certainly is not getting copied to the permanent directory. Here's what I have: This creates the upload form: FORM method="post" ENCTYPE="multipart/form-data" action="add_record2.php" INPUT type="file" name="picture" size=30 /form

[PHP] Is PHP integrated with LDAP?

2001-02-05 Thread Zhu George-CZZ010
Does anyone know if PHP is interated with LDAP, or how can I integrate PHP with LDAP? Thanks and Regards, George -Original Message- From: Alex Akilov [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 11:26 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Java Servlet Support

[PHP] Attempt to unsubscribe failed

2001-02-05 Thread Jon Jacob
I have tried to unsubscribe to the list because my server will be down for at least two weeks, however, I am still getting mail. If someone could pass this on to the admin I would appreciate it (and so would they). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] XML Parsing with PHP

2001-02-05 Thread Chris Lee
PHPbulder.com classically has terrible tutorials. I myself am trying to learn this XML deal. PHPbuilders code, cut and paste is filled with parse errors. after fiddling Ive got his example to work, but I havent a clue how? he posts this stupid two page article, page one is nothing, page two is

[PHP] PHPSESSID location?

2001-02-05 Thread Shane McBride
Where is the temp session file held at? I have a script that uses sessions but I can't find the session file. My php.ini file indicates that the session.save_path = c:\php\sessiondata but there is not any files there when there should be. It does look like the session is working though. Any

RE: [PHP] include files

2001-02-05 Thread Brian V Bonini
? include ($DOCUMENT_ROOT . "/footer-nomenu.inc"); ? -Original Message- From: David VanHorn [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 1:04 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] include files At 12:50 PM 2/5/01 -0500, Brian V Bonini

[PHP] GD with TTF

2001-02-05 Thread Brandon Orther
Hello, Does anyone know where PHP looks for the TTF when using GD to make an image? I keep getting an error saying it can't find the font file Thank you, Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364

Re: [PHP] XML Parsing with PHP

2001-02-05 Thread Joe Stump
If you're talking about my article on PHPBuilder Found at: http://www.phpbuilder.com/columns/joe2907.php3 You can feel free to ask me any questions you like in private (I write them because I like supporting a community that has helped me so much) --Joe On Mon, Feb 05, 2001 at

Re: [PHP] array max min

2001-02-05 Thread rui
On 05-Feb-2001 Steve Werby wrote: [EMAIL PROTECTED] wrote: i thought about that, but i gave up on my first attempt on doing so, because mysql complained about my query, it seems that it doesn't allow to use the max() function with a sum() function, an example of the query is: SELECT

[PHP-CVS] cvs: php4 / NEWS

2001-02-05 Thread Andrei Zmievski
andrei Mon Feb 5 09:39:58 2001 EDT Modified files: /php4 NEWS Log: Index: php4/NEWS diff -u php4/NEWS:1.580 php4/NEWS:1.581 --- php4/NEWS:1.580 Sun Feb 4 18:09:08 2001 +++ php4/NEWS Mon Feb 5 09:39:58 2001 @@ -2,6 +2,9 @@

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

2001-02-05 Thread Vlad Krupin
vladMon Feb 5 10:15:32 2001 EDT Modified files: /php4/ext/pspellpspell.c Log: now when pspell/pspell.h is included, it will recognize that it has to work in compatibility mode. (The previous fix had the right idea, but was too far down in the source)

RE: [PHP] XML Parsing with PHP

2001-02-05 Thread Brian V Bonini
You know, some of these guys are members of this list. I don't think they make any claims about being the definitive end all be all source for all things PHP but rather are a bunch of folks sharing their PHP experiences/knowledge. I'd say that's pretty generous of them. -Brian

Re: [PHP] include files

2001-02-05 Thread Christian Reiniger
On Monday 05 February 2001 18:15, David VanHorn wrote: I know this works, in footer.inc, to pull up nomenu. ? include("/home/dvh/public_html/footer-nomenu.inc")? However, is there a more "generic" way to specify the server root as the path? I'd rather not expose my directory structure in

[PHP] Using a background image with GD

2001-02-05 Thread Brandon Orther
Hello, Does anyone have an example or can someone tell me how to use a background image in GD? Thank you, Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364 www.webintellects.com

[PHP] simple config. question

2001-02-05 Thread Don
Hi, I'm a newbie with PHP and have successfully written some simple scripts. I am using Apache on Redhat Linux 6.2 with PHP 3. At the moment, I have to give .php3 extensions ot my web files in order for PHP to run. If I insert PHP code into an .html file, it does not execute. Is their a way

  1   2   >