Re: [PHP] need help w a for loop

2003-10-20 Thread Ray Hunter
On Mon, 2003-10-20 at 15:35, Colin Kettenacker wrote: > $categories_array = array(); > for($j=0; $j < $categories_count; $j++){ > $tempval="str_categories".$j; > array_push($categories_array,$_REQUEST[$tempval]); > } Or you could try this: $categories_array = array(); for( $j = 0; $j < $categor

RE: [PHP] need help w a for loop

2003-10-20 Thread Ray Hunter
> > Or you could try this: > > > > $categories_array = array(); > > > > for( $j = 0; $j < $categories_count; $j++ ) { > > $tempval = "str_categories".$j; > > $categories[$j] = $_REQUEST[$tempval]; > > } > > Or you could get really fancy and try this (my preferred method if not a > little con

Re: [PHP] php framework

2003-10-21 Thread Ray Hunter
s times in the past couple of months... -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Tab index

2003-10-22 Thread Ray Hunter
ndex on the Drop down menu? > > > > Thanks > > > > Hardik > > Wrong list. Better results if you ask this question on a > HTML/DHTML/JavaScript list. Also check out groups on google, there is tons of great information there on these types of groups. -- Ray --

Re: [PHP] command line arguments

2003-10-22 Thread Ray Hunter
nly refresh me? searching did no good. $argv is an array that will give you the values and $argc will give you the total number (count) of arguments. Also, make sure that you have your php.ini file set up to populate those variables. Check this tutorial out: http://www.phpb.com/columns/ray/cli/ T

Re: [PHP] Screwing up my results...please help

2003-10-22 Thread Ray Hunter
You can always query the database and store the results as arrays in the session and sort the arrays...this would limit how many times that you are querying the database (if you are just sorting the results). -- ray On Wed, 2003-10-22 at 15:02, Ryan A wrote: > Hi, > I have a search for

Re: [PHP] XML Parser

2003-10-24 Thread Ray Hunter
the DOM XML parser might be a better alternative. Expat will be faster and less memory intensive than DOM. HTH... -- Ray On Fri, 2003-10-24 at 07:03, Scott Fletcher wrote: > I wonder about overwritting the same tag twice, like '' and end > up with one result when using hte XM

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
alternative is to have php run as soap and have your java access the php soap service and get xml data. Then you java app can parse the xml and then display it to the user. HTH... -- Ray On Fri, 2003-10-24 at 08:10, Matt Palermo wrote: > I have been searching the web for ways to execute remote

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
Sorry, i forgot to mention the package that you might really want to review... java.net is the java package that provides all these classes, like URLConnection and Sockets as mentioned by another person. -- Ray On Fri, 2003-10-24 at 08:24, Ray Hunter wrote: > You have various options and

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
required files. Might be worth looking into since it is php based. -- Ray On Fri, 2003-10-24 at 12:20, Raditha Dissanayake wrote: > hi, > > Great to hear that PHP is your language of choice. There are several > SOAP libraries available and they come with good docs. However i

Re: [PHP] Using PHP with JAVA

2003-10-24 Thread Ray Hunter
Yeah, http://gtk.php.net Also they have a mailing list that you can join and get help from those experienced users. HTH -- Ray On Fri, 2003-10-24 at 13:26, Matt Palermo wrote: > I don't know much about that, but it definitely sounds better, escpecially > since it's still PH

Re: [PHP] Web Service in PHP/XML

2003-10-26 Thread Ray Hunter
if you want to use xml and php you can use soap and then you can incorporate other languages as well...making soap the common protocol via http. most languages support soap implementations of one sort. should be worth your time to look into soap. -- Ray On Sun, 2003-10-26 at 12:44, Dan

Re: [PHP] XML/MySQL

2003-10-26 Thread Ray Hunter
while( $row = database logic here ) { $records[] = sprintf( $record, $row['id'], $row['name'], $row['purchases'] ); } Then use the array functions to merge, sort or whatever you like... That should get you started... HT

Re: [PHP] Randomizing 3 different numbers.

2003-10-27 Thread Ray Hunter
== $two) ); echo "One: $one\n"; echo "Two: $two\n"; echo "Three: $three\n"; HTH -- Ray On Mon, 2003-10-27 at 05:26, Ian Gray wrote: > I am tring to output 3 different random numbers between 1 > and 20 into 3 different strings. Using Rand() for each > strin

RE: [PHP] Files question

2003-10-30 Thread Ray Hunter
can loop through the array and pull out line by line...example: $lines = file( "somefile.txt" ); foreach( $lines as $line => $value ) { echo "$line = $value"; } HTH -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP with Java extension

2003-11-24 Thread Ray Hunter
> Any ideas and recommendations are more than welcome. Try going the other waytry utilizing PHP in your servlet or j2ee server environment. I have had greater success with this then trying to get java integrated into PHP. HTH -- Ray -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] PHP Java extension--hopeless?

2003-11-27 Thread Ray Hunter
You would obviously want to > do this over HTTPS instead of plain old HTTP Or a servlet filter is fine in this situation that redirects to the auth-website if cookie is not set or redirects to the associated php page. -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP-Mysql problem

2003-12-11 Thread Ray Hunter
MySql module included?? I am a > EXTREME newbie when it comes to compiling anything in Linux. Did you install apache/php/mysql as rpms? If you did then all you need to do is install the php-mysql rpm. -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] rss/rdf feed classes

2003-12-11 Thread Ray Hunter
Check this out: http://builder.com.com/5100-6374-5109834.html?tag=sc -- Ray On Thu, 2003-12-11 at 11:41, Rolf Brusletto wrote: > Hey all - > > I'm looking for a class that returns a rss/rdf feed with each of the > items as an array, or suggestions on how to items into an

Re: [PHP] Re: can tomcat server run PHP??

2003-12-12 Thread Ray Hunter
gi...however, that would probably be least optimum way of doing it. Basically, here is what you do: 1. Install php and apache (whether php is DSO or compiled in). 2. Install tomcat. 3. Install jk2 connector so that apache and tomcat work together. 4. Set up your mounts for jsp files. HTH, Ray -- P

Re: [PHP] Re: PHP5 XML functions

2003-12-30 Thread Ray Hunter
, I am not sure if the php installer contains all the extensions. I usually download the zip file and it contains all the extensions. -- Ray On Tue, 2003-12-30 at 21:38, Aidan Lister wrote: > I wish, I'm interested as well :/ > > <[EMAIL PROTECTED]> wrote in message n

Re: [PHP] Display syslog file?

2004-01-09 Thread Ray Hunter
files that you can look at. Be more specific. -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML?

2004-01-09 Thread Ray Hunter
t give me an idea of what I'm getting into. Is it > easy to implement? Does it make things easier on me in the future? > Etc.etc. What do you want to do with xml? There is expat and DOM that you can use to parse and create xml docs. What are you looking to achieve? -- Ray -- PH

RE: [PHP] Display syslog file?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 08:05, Carlton L. Whitmore wrote: > Ray, > I'm using the root user to access the file so rights aren't an issue. > I want to display the file thru a webserver. I'd like the page to > refresh so I can watch the activity coming in from my Sonic

RE: [PHP] XML?

2004-01-09 Thread Ray Hunter
. There are many uses for xml documents. Mainly it is a way to describe and organize your data into a logical representation. -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML/HTML encoding?

2004-01-09 Thread Ray Hunter
.. > > This is what I want > But my browser displays "dotted e () works" > > Because I don't want yes or no: Please tell me what (maybe obvious > thing) I'm doing wrong What browser and version are you using? -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] XML/HTML encoding?

2004-01-09 Thread Ray Hunter
On Fri, 2004-01-09 at 08:44, Vincent Jansen wrote: > I see this using MSIE 6 > But in Mozilla 1.5 I get ë for ë > > I'm hoping this is fixable without changing browser settings Do you have this page accessible via the web that i can take a look at it. -- Ray -- PHP General M

Re: [PHP] Form validation: client- or server-side?

2004-01-09 Thread Ray Hunter
th HTML forms, so it's not an entirely spurious question. I do both server and client side...javascript helps with the really basic and server-side helps with the complicated stuff. My theory is do as much on the client and then do server-side. -- Ray -- PHP General Mailing List (http://www

Re: [PHP] pass output of php scripts through command line program or cgi

2004-01-16 Thread Ray Hunter
on the commandline you need to have the php executable on your path...then run php -f [filename] so php -f index.php that will do it for you. -- Ray On Sat, 2004-01-17 at 05:44, Paul William wrote: > Hi, > > I want to run the output of all the php scripts running on my apache

Re: [PHP] Design Patterns & PHP5

2004-01-22 Thread Ray Hunter
eck out http://www.phppatterns.com That should give you tons of great information. -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] what PHP really needs

2004-01-23 Thread Ray Hunter
You can use shared memory too...only on *nix flavors though. -- Ray On Fri, 2004-01-23 at 12:42, PHP general wrote: > There's 1 really important thing missing in PHP as I see it, and it's the > ability to keep variables in memory for as long as > the programmer choose. If this

[PHP] :: MySql and PHP Book

2001-01-11 Thread Ray Iftikhar
I was looking for a good book that teaches you how to use PHP (mainly 3) with MySql. I went to Amazon.com and found "MySql" by Paul Dubois, which was supposed to be THE book for mySql programming. However, after reading some of the customer reviews, it said that it was "light" in the PHP s

[PHP] - printing 2 dim. array

2001-01-21 Thread Ray Iftikhar
Hello, I have a file...its contents are as follows: Name of person1, string1 Name of person, string Name of person, string Name of person, string Name of person, string -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

[PHP] [php] - alphabetizing

2001-01-21 Thread Ray Iftikhar
from A-Z (using the first column as the primer key). I was planng on using an array, but I would have to use a 2 dimensional array and I am not too swift on those.. Thanx, Ray.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[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] displaying string combinations

2001-04-19 Thread Ray Iftikhar
doing this by: print "$banner".$RandBanner1; but that doesnt seem to work...Anyone got any other suggestions? Any help is greatly appricaited. Thanks in advance, Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

[PHP] suggestions for binary data in database

2001-04-27 Thread Ray Hilton
database? compared to the file system? i assume its going to be quite a lot higher. DO you reckon it would be better to scrap that and store the images on the file system? Ray Hilton -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] - Hard return in readfile

2001-05-16 Thread Ray Iftikhar
someway to get "readfile" to recognize returns in the file? Thanks in Advance.. Ray _ Get your FREE download of MSN Explorer at http://explorer.msn.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

[PHP] PHP binary file

2002-02-19 Thread Hunter, Ray
Has anyone compiled php on linux and found the binary executable file? Ray Hunter Firmware Engineer ENTERASYS NETWORKS Phone: 801 887-9888 Fax:801 972-5789 Email: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> www:www.enterasys.com

RE: [PHP] Dynamic file creation in Win NT4.

2002-02-19 Thread Hunter, Ray
You need to make sure that php has the correct permissions to access the directory and write the file that you want it to write too... Check out the manual for this... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Sridhar Moparthy [mailto:[EMAIL PROTECTED

RE: [PHP] argv and argc

2002-02-19 Thread Hunter, Ray
Here are all the predefined variables that are in PHP. You will notice that there is an argc and argv here. http://www.php.net/manual/en/language.variables.predefined.php Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED

RE: [PHP] How to Config PHP to run snmp in php script?

2002-02-20 Thread Hunter, Ray
dbm --with-db2 --with-db3 --with-png --with-openssl=/usr/include/openssl The problem that I faced here is that php chokes on finding the evp.h header file in the openssl direcory. I look in the directory and it is there. Let me know if I can help you further. Ray Hunter Firmware Engineer

RE: [PHP] fdisk?

2002-02-20 Thread Hunter, Ray
It depends on who you are talking too... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Brian V Bonini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 9:12 AM To: PHP Lists Subject: [PHP] fdisk? Anyone know what "fdisk" stands

RE: [PHP] question

2002-02-20 Thread Hunter, Ray
A "work around" is using the one of the system commands and print that way. Check here for the program execution functions: http://www.php.net/manual/en/ref.exec.php Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Matthew Berwald [mailto:[EMAIL

RE: [PHP] Class question

2002-02-20 Thread Hunter, Ray
again you want to use objects. As for practice, it is up to you. For me, no... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 1:58 PM To: PHP General Subject: [PHP] Class question

[PHP] Re: how to give vars to a php(shell env) script?

2002-04-23 Thread Ray Hunter
Pass the variables at the command line... $ARGV[i] and $ARGC deteremines the number of variables passed... Try it and see what happens "Hermann Bier" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi NG! > > how could i give some vars to a php script, tha

Re: [PHP] Re: Display large text fields in html

2002-04-23 Thread Ray Hunter
What type of database are you using? You might want to look into the creating temp tables and accessing them... "Jan Peuker" <[EMAIL PROTECTED]> wrote in message 00e101c1eb0a$9a50c730$7ca990d4@toshiba">news:00e101c1eb0a$9a50c730$7ca990d4@toshiba... > Ok, but true frames load very slow - not on a

[PHP] Re: How to connect to mysql through JAVA?

2002-04-24 Thread Ray Hunter
Try checking the sun documentation...java.sun.com or the mysql documentation... Ray Hunter "Balaji Ankem" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > What is the command to connect to mysql through java. &

[PHP] Re: is their a way to run a command as root ???

2002-04-24 Thread Ray Hunter
check your manpages on chroot and sticky bits... This should help you out... Ray Hunter "Scott Baer" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is their a way to run a command as root..or another user.. > > I know t

RE: [PHP] regex: string begins with NEITER http NOR cid NOR mailto

2002-05-19 Thread Ray Hunter
Show some code... Thanks, Ray "BigDog" Hunter -Original Message- From: kras [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 19, 2002 9:53 AM To: [EMAIL PROTECTED] Subject: [PHP] regex: string begins with NEITER http NOR cid NOR mailto Hello! I have got a big problem: I

RE: [PHP] Re: Mcrypt: Blowfish or Twofish or no fish?

2002-05-21 Thread Ray Hunter
MD5 is not that secure compared to blowfish or twofish or the other types of encryption available with mcrypt... Thanks, Ray Hunter -Original Message- From: Javier [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 2:43 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Mcrypt

RE: [PHP] Re: Mcrypt: Blowfish or Twofish or no fish?

2002-05-21 Thread Ray Hunter
It is a one way hash that many people use for simple encryption...however, it should not be used for encrypting sensitive information...some people have used it for encrypting data contained in files... For example do a md5 hash then encrypt the hash Thanks, Ray Hunter -Original

RE: [PHP] Re: Mcrypt: Blowfish or Twofish or no fish?

2002-05-21 Thread Ray Hunter
And yes...md5 is a message digest hashing utility for "compact digital signatures for an arbitrarily long stream of binary data." MD5 website... Thanks, Ray Hunter -Original Message- From: Sqlcoders.com Programming Dept [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22,

RE: [PHP] Mcrypt: Blowfish or Twofish or no fish? Part 2

2002-05-21 Thread Ray Hunter
. I would suggest trying all three (blocksize, keylength, and both) and see which one works best for you. You should see how your system deals with it and then decide...I like to have bigger keylenghts personally... Thanks, Ray Hunter -Original Message- From: Jimmy Lantz [mailto

RE: [PHP] Servers, servers and more servers

2002-05-22 Thread Ray Hunter
apache Thanks, Ray Hunter -Original Message- From: Stephen Tredrea [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:06 AM To: [EMAIL PROTECTED] Subject: [PHP] Servers, servers and more servers I'm trying to put together an architecture for a web environment and h

RE: [PHP] php apache log analysers/website stats

2002-05-24 Thread Ray Hunter
Do a search on google and you will find plenty to keep you busy with... Thanks, Ray Hunter -Original Message- From: John Ngo [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 8:47 PM To: [EMAIL PROTECTED] Subject: [PHP] php apache log analysers/website stats hey does anybody

RE: [PHP] inspirational

2002-05-26 Thread Ray Hunter
be a function that does all this, however, you can try to work around it Thanks, Ray Hunter -Original Message- From: jtjohnston [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 25, 2002 11:39 PM To: [EMAIL PROTECTED] Subject: [PHP] inspirational I want to detect the url my .php li

RE: [PHP] Parsing PHP output

2002-05-26 Thread Ray Hunter
...however, I have only played with the XML stuff... Thanks, Ray Hunter -Original Message- From: Mark [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 26, 2002 12:07 PM To: [EMAIL PROTECTED] Subject: [PHP] Parsing PHP output Dear folks, Has anyone ever been able to get a CGI to produce valid

[PHP] Mcrypt Function - New to it

2002-05-30 Thread Tom Ray
Hi there..some what a new programmer when it comes to all this. I'm trying to encrypt some data and then decrypt it. It doesn't have to be high bit encryption just something simple like 3DES. But I keep getting it wrong. Any help would be greatful. Here's the piece of code: $iv = mcrypt_create

Re: [PHP] Mcrypt Function - New to it

2002-05-30 Thread Tom Ray
""); > $iv = pack("a".mcrypt_enc_get_iv_size($td),$iv); > mcrypt_generic_init ($td, $password, $iv); > $id = mdecrypt_generic ($td, base64_decode($eid)); > mcrypt_generic_end ($td); > return $id; > } > Tom > >

RE: [PHP] unable to load dynamic library etc. etc.

2002-02-21 Thread Hunter, Ray
Place all the dlls in the same directory as the php.exe file and in your php.ini file have the extension_dir = .\ (windows). This works for me great... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jeremy Reed [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: [PHP] php-gtk

2002-02-21 Thread Hunter, Ray
I do not know of any editors for php-gtk. Here is the general list: [EMAIL PROTECTED] website: http://gtk.php.net Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Dasmeet Singh Arora [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 8:59

[PHP] Re: phpmyadmin

2002-02-21 Thread Ray Hunter
You might want to try phpbuilder, they have some great articles. phpMyAdmin is housed on sourceforge.net. You can check them out there... "Jtjohnston" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I know this is a bit off the wall for most, but for what p

RE: [PHP] imagecreate with Windows .exe installer

2002-02-22 Thread Hunter, Ray
You need to have that dll installed on your system. You need to download php-version.zip file that contains all of the dlls in it to run with. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Mike Brackenridge [mailto:[EMAIL PROTECTED]] Sent: Friday, February

RE: [PHP] Freeing up locked table?

2002-02-25 Thread Hunter, Ray
This is mysql doing the locking, you will need to look into your mysql configuration. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jeff Lewis [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 2:41 PM To: [EMAIL PROTECTED] Subject: [PHP] Freeing up

RE: [PHP] Numbered Arrays

2002-02-25 Thread Hunter, Ray
Put it in a for loop and add data to the array. Example: for( $i = 0; $i < 24; $i++) { $arr[$i] = "Data here."; } This is one of the fastests; however, there are other ways as well. Ray Hunter Firmware Engineer ENTERASYS NETWORKS

RE: [PHP] Numbered Arrays

2002-02-25 Thread Hunter, Ray
That is probably faster than going through the for loop... Helps if I read the documentation on Arrays. Thanks for info Lars, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Lars Torben Wilson [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 3:05

RE: [PHP] Php-gtk

2002-02-27 Thread Hunter, Ray
Try the php-gtk list. [EMAIL PROTECTED] I use this list all the time and they are great at answering questions... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 7:38 PM To: [EMAIL

RE: [PHP] SQL and PHP (socket vs TCP)

2002-02-27 Thread Hunter, Ray
What exactly are your trying to do. TCP connections use sockets to connect. Sockets are how you connect... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Uros Gruber [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 1:08 AM To: [EMAIL PROTECTED

RE: [PHP] hmm.. more trouble with telnet.

2002-03-01 Thread Hunter, Ray
It did not find it with your classpath... Try using locate or slocate, this should find it... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Sean Kennedy [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:28 AM To: [EMAIL PROTECTED] Subject: [PHP

RE: [PHP] PHP and Java

2002-03-01 Thread Hunter, Ray
Is the libphp_java.so located in your apache libexec directory? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:49 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP and Java I have

RE: [PHP] PHP and Java

2002-03-01 Thread Hunter, Ray
If you are running this on apache then it needs to be in the libexec directory of apache where it looks for the *.so modules that are to be loaded. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: [PHP] Re: PHP and Java

2002-03-01 Thread Hunter, Ray
and access php through java...This is faster and reliable. Java in php is not as faster or reliable. Check the php documentation on this... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Proyecto de Grado [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01

RE: [PHP] Can I authenicate user with the accounts in passwd and shadow??

2002-03-05 Thread Hunter, Ray
You might want to try setting up an LDAP, kerberos, or NIS system before using the passwd and shadow file. There are some security issues that you might not be aware of... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED

RE: [PHP] Script Debug.

2002-03-07 Thread Hunter, Ray
has helped me debug many scripts that did not display errors for me. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: DARCY,MATTHEW (Non-HP-UnitedKingdom,ex2) [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 7:52 AM To: [EMAIL PROTECTED

RE: [PHP] php CLI

2002-03-08 Thread Hunter, Ray
What type of system are you running this on? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: matthew clay shultz [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 12:38 PM To: [EMAIL PROTECTED] Subject: [PHP] php CLI hi, when i run script from the

RE: [PHP] Novata Como inicio??

2002-03-11 Thread Hunter, Ray
Que es su problema? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Jenny Fox [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 9:41 AM To: [EMAIL PROTECTED] Subject: [PHP] Novata Como inicio?? Primeramente alguien sabe español???, estoy

RE: [PHP] php.ini ...

2002-03-11 Thread Hunter, Ray
. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Marcel Besancon [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 10:18 AM To: [EMAIL PROTECTED] Subject: [PHP] php.ini ... Hi, it's me again, when I used the PHP 4.0.6 I had a ph

RE: [PHP] Execute php script inside an HTML page???

2002-03-12 Thread Hunter, Ray
Yes, However, you need to add the .html file extension to the php parser so that it parses the .html file. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Lic. Carlos A. Triana Torres [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 1

RE: [PHP] passing values

2002-03-13 Thread Hunter, Ray
Are you using the post form method to post this variable to the next page. The value $_POST['inp'] is not present or set...there is a null value there. You will need to set the value with a post inorder to access it with the predefined variable $_POST... Thank you, Ray Hunte

RE: [PHP] Newbie Question

2002-03-13 Thread Hunter, Ray
What type of OS are you running this application on and how was php compiled? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Greg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 6:47 AM To: [EMAIL PROTECTED] Subject: [PHP] Newbie

RE: [PHP] How to access arrays from $GLOBAL?

2002-03-13 Thread Hunter, Ray
Where is some good documentation on how $GLOBALS works and what is really going on in the background? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 9:53 AM To: Richard

RE: [PHP] SERVER INFO

2002-03-15 Thread Hunter, Ray
Check out the Linux howto's at http://www.linuxdoc.org/docs.html#howto This will help you set up a server and get online... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Dani [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 11:42

[PHP] Re: where is http_cookie ?

2002-03-16 Thread Ray Hunter
Try using the predefined variable $_COOKIE instead and see if that works for you... "Bas Jobsen" <[EMAIL PROTECTED]> wrote in message 02031617361309.10531@bjobsen">news:02031617361309.10531@bjobsen... > Hello, > > I have installed php 4.1.2. as a cgi module. > But http_cookie isn't set. I don' k

[PHP] Re: PHP Document not found

2002-03-16 Thread Ray Hunter
You should try moving to the current version of php and then try it... Ray Hunter "Jan Weidhaase" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi > > If I try to open a non-existing PHP document by my Apache server I got a

RE: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread Hunter, Ray
Answers: 1. Yes you can do it with css. http://www.w3schools.com/css/default.asp 2. The text field area is defined by the browse...You cannot change the size of the actual box that is the text field... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message

RE: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread Hunter, Ray
will be 25 characters...This is for the text and password fields... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Darren Gamble [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 11:32 AM To: 'Hunter, Ray'; 'Phil Schwarzmann';

[PHP] Sockets and Telnet

2002-03-19 Thread Hunter, Ray
Has anyone created a telnet session in php with sockets and can give me some help on setting one up? Thank you, Ray Hunter Firmware Engineer I ENTERASYS NETWORKS Phone: 801.887.9888 Fax:801.972.5789 Email: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>

RE: [PHP] A Newbie needs help with his first Class

2002-03-22 Thread Hunter, Ray
Don't declare the new object in the file. I would declare the new object in the script that you are running in the browser. Example... root_path . ""; echo $global->relative_path . ""; ?> Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS >

RE: [PHP] A Newbie needs help with his first Class

2002-03-22 Thread Hunter, Ray
The way that Warwick has it set up is fine as long as you create the new in the script that is being called by the browsers so that you can access the class variables...I do not see the need to change the function name unless it conflicts with any predefined variables. Thank you, Ray Hunter

RE: [PHP] Strange problem passing variables

2002-03-22 Thread Hunter, Ray
Try using $_GET['varnamehere'] Ray Hunter -Original Message- From: Jean-Arthur Silve [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 8:05 AM To: [EMAIL PROTECTED] Subject: [PHP] Strange problem passing variables Hi, A friend of me use PHP4.1.2 on Linux+Apache H

RE: [PHP] cron with php as apache module

2002-03-22 Thread Hunter, Ray
add this before the /* EOF */ Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Paul Roberts [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 22, 2002 12:00 PM > To: [EMAIL PROTECTED] > Subject: [PHP] cron with php as apache module

RE: [PHP] RADIUS - supported in PHP?

2002-03-28 Thread Hunter, Ray
What are you trying to do with radius and php? Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Benji Spencer [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 28, 2002 6:35 AM > To: [EMAIL PROTECTED] > Subject: [PHP] RADIUS

RE: [PHP] RADIUS - supported in PHP?

2002-03-28 Thread Hunter, Ray
mibs on network devices. This gives me authentication and accounting information. I suggest you read up on these rfcs: 2618, 2619, 2620, 2621, 2865, 2866, 2867, 2869, and 3162. You could also try writing a radius extension for php? Thank you, Ray Hunter Firmware Engineer ENT

RE: [PHP] Program Looping ?

2002-03-29 Thread Hunter, Ray
You need to also make sure that you change the script execution time allowed in the php.ini file to 5 minutes or more or else you will get a time out error. Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Jason Caldwell [mailto:

RE: [PHP] RE: PHP/MySQL/XML

2002-04-01 Thread Hunter, Ray
One thing you need to thing about is if you are going to us DTDs. If you are and they specify that you need the elements then it is best to add a space when nothing is contained in $ext... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- >

RE: [PHP] PHP FAQ (again)

2002-04-03 Thread Hunter, Ray
ble help. Just some extra thoughts here... I now some mailing lists will not even reply if you do not follow specific criteria when you post... Thank you, Ray Hunter Firmware Engineer ENTERASYS NETWORKS > -Original Message- > From: Justin French [mailto:[EMAIL PROTECTED]] >

RE: [PHP] PHP FAQ (again)

2002-04-03 Thread Hunter, Ray
u ask if they have researched some of the information and the reply is no...Then I say "RTFM and STFI"... This is a general list and newbie questions should be asked here...However, newbies need to post adequate information for an adequate response... Thank you, Ray Hunter Firmware Engi

RE: [PHP] sablotron XMl XSLT

2002-04-09 Thread Hunter, Ray
http://rpmfind.net/linux/rpm2html/search.php?query=js <http://rpmfind.net/linux/rpm2html/search.php?query=js> I am actually installing it now as we speak... RAY HUNTER Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Matthew Luchak [mailto:[EMAIL PROTECTED]] S

RE: [PHP] php and wml

2002-04-09 Thread Hunter, Ray
You can you just need to have php handle the wml pages and supply the correct headers... RAY HUNTER Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Starman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 2:00 PM To: [EMAIL PROTECTED] Subject: [PHP] php and

<    1   2   3   4   5   6   7   8   9   >