Re: [PHP] New to PHP

2003-07-07 Thread Ray Hunter
If you are on developing on linux then that would be good. however, i strongly encourage gaining knowledge of programming concepts if that is what you are doing with php. Having a solid foundation of programming concepts will help you in php and any other language. -- BigDog On Mon,

Re: [PHP] XML

2003-07-08 Thread Ray Hunter
XML is a way to store data in a structure format that is correct and is platform independent; meaning u can share data with anything that understands xml format. For web applications xml allows you to send data to the client and have the browser do the parsing for you. (I would suggest ie5.5 and

RE: [PHP] XML

2003-07-08 Thread Ray Hunter
I see that not many sites require the use of xml/xsl(t). Many sites can just use html and database to accomplish 99.9% of the work. I always suggest that when you have tons of data that you need to send to the user that it is a good idea. Especially now that xslt is growing up :) I like to use

Re: [PHP] accesing php script in a different port

2003-07-09 Thread Ray Hunter
Try using sockets in php to set up the port and listen there... -- BigDog On Wed, 2003-07-09 at 00:22, Michael P. Carel wrote: hi to all, I want to develop a system that can be access in a different port of the web (such as in Port 11000). But i dont know how to do this without affecting

Re: [PHP] Using PHP with windows logon

2003-07-09 Thread Ray Hunter
On Wed, 2003-07-09 at 03:32, Brenton Dobell wrote: can you use your windows logon as set it as a variable in php? U should probably look at how activex does it. I know that asp scripts do it all the time and possibly some com objects can set that for you. I have connected to exchange and

RE: [PHP] XML

2003-07-09 Thread Ray Hunter
correctly, I should have enough to keep me busy for a while, and hopefully help me to increase my knowledge and understanding so I won't ask stupid questions on this list ;) Thanks again for the input. On Wed, 2003-07-09 at 00:36, Ray Hunter wrote: I see that not many sites require

Re: [PHP] Where do I post loadable extensions questions?(semi-multi-part)

2003-07-09 Thread Ray Hunter
There is the internals mailing list that is for the developers of php, they can answer most questions about the internal workings of php. I would suggest reviewing the code in cvs to see how they are doing the c programming for modules. I figure that if you review those extensions then u should

Re: [PHP] nested for loops

2003-07-09 Thread Ray Hunter
Also u can do nested foreach loops too... Example: while( $row = mysql_fetch_array( $result ) ) { $rows[] = $row; } foreach( $rows as $row ) { foreach( $row as $i = $value ) { // do stuff here echo $i = $value\n; } } I do this tons... -- bigdog On Wed,

Re: [PHP] php - javascript together prob?

2003-07-09 Thread Ray Hunter
U need to quote it with double quotes and escape them with like so: \ that should work for you. If not then you will need to start separating the string out and joining it with the . . -- BigDog On Wed, 2003-07-09 at 15:51, Micah Montoy wrote: Anyone have an idea of how to get this to work?

Re: [PHP] Code and Good Design Methods

2003-07-13 Thread Ray Hunter
Also u could build your own system that is php xml and xslt based. That will really help you separate the logic from the presentation. Check out (dom)xml and (dom)xslt. Sometimes there is still logic in the presentation with template systemswith xslt however, it might be to much for the

Re: [PHP] Code and Good Design Methods

2003-07-13 Thread Ray Hunter
-07-13 at 01:20, Robert Cummings wrote: Let's be honest, XSL is is one big logic step itself -- moreover it's a whole other language to learn. Cheers, Rob. On Sun, 2003-07-13 at 02:07, Ray Hunter wrote: Also u could build your own system that is php xml and xslt based. That will really

Re: [PHP] How does PHP interact when using Java?

2003-07-13 Thread Ray Hunter
Not to sure how they work together in a php environment, however another alternative it so use php in a java (servlet,j2ee) environment. It is harder to set up, however, there are not as many errors. Sometimes there is a performance increase. -- BigDog On Sun, 2003-07-13 at 01:50, Jan Bro

Re: [PHP] Can PHP Build XML Pages?

2003-07-14 Thread Ray Hunter
There are 2 ways that i make xml files with php. 1. Use domxml to make the docs. (RTM this is somewhat complex.) 2. Just create it similar to html but use xml tags. The second way is really easy. 1. Make sure to send header content type as text/xml. header( Content-Type: text/xml ); 2.

[PHP] php.ini directives question

2003-07-14 Thread Ray Hunter
Does anyone know if the local values for the php.ini directives have presidence over the master value? -- BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How To Ask Questions - Some List Guidelines

2003-07-14 Thread Ray Hunter
I would like to also say that if one follows some sort of guideline that person is likely to recieve more help (responses). I know that if there are subjects that are vague and emails that contain little information, i tend to delete them. Whereas, if someone takes the time to address the issue,

Re: [PHP] Problem with 4.3.2 built as DSO

2003-07-14 Thread Ray Hunter
Here is how i trouble shoot it: 1. make sure that there is a libphp4.so file in libexec. 2. make sure that you have these lines in httpd.conf: LoadModule php4_module libexec/libphp4.so AddType application/x-httpd-php .php 3. restart apache That should work for you. Also make sure that when

Re: [PHP] Problem with 4.3.2 built as DSO

2003-07-14 Thread Ray Hunter
-07-14 at 15:52, Patrick Hutchinson wrote: Yeah, I have all that in the conf file. I've rebuilt it twice and made sure it was pointing to the propper apxs and everything. Even did a make clean to be sure. Still doesn't work. I've checked everything I can think of. -Patrick Ray Hunter

Re: [PHP] PHP Perl information sharing

2003-07-14 Thread Ray Hunter
u could set up a perl script to read cookies and vice versa with php. That should not be a problem you could also create a form with php variables and post it to a perl script. u you also create a link to a perl script that passes varibles via the url. Very easy to do just a matter of how you

Re: [PHP] php4_module is already loaded

2003-07-14 Thread Ray Hunter
Most likely your php is a core module that does not require the load module in your httpd.conf file... you can verify if it is core (static not DSO) with httpd -l -- BigDog On Mon, 2003-07-14 at 21:01, CDitty wrote: I just updated my 4.2.x to 4.3.2 and when I restart the apache, I get the

Re: [PHP] console script html tags?

2003-07-14 Thread Ray Hunter
Turn the html errors off in your php.ini file or write a function that handles all your errors for you and u dont echo out html tags. http://us3.php.net/manual/en/function.set-error-handler.php -- BigDog On Mon, 2003-07-14 at 21:32, Curt Zirzow wrote: Larry Brown [EMAIL PROTECTED] wrote:

Re: [PHP] Older Version problems

2003-07-14 Thread Ray Hunter
Have you checked that the files are indeed getting to the directory that is specified by the upload_dir setting in php.ini? Also check your tmp dirs to see if they are getting there too. If they are not getting to the tmp dir then there are some issues. -- BigDog On Mon, 2003-07-14 at 21:19,

Re: [PHP] Code and Good Design Methods

2003-07-17 Thread Ray Hunter
Actually, MVC works really well with XML technologies, however, there needs alot of work in php's core to fully utilize the benefits of an mvc paradigm. -- BigDog On Wed, 2003-07-16 at 04:12, Joel Rees wrote: Hi Joel, Thanks for nice comments on the XML, XSL. I want to know more

Re: [PHP] XML

2003-07-17 Thread Ray Hunter
1. How efficient is to use XML+XSLT solution? Does it add processing overhead to the system? The efficientcy is relative to many factors, however I can stress this. The style sheets can be cached client side and then only xml data can be sent to the user. This reduces bandwidth and allows the

Re: [PHP] Display HTML/PHP code on a web page

2003-07-17 Thread Ray Hunter
I've googled for it, but nothing came up. How do I display code on a page without it being executed? If you want to show php source then you can use show_source function or highlight_file function. -- BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] XML

2003-07-17 Thread Ray Hunter
On Thu, 2003-07-17 at 01:28, Curt Zirzow wrote: Ray Hunter [EMAIL PROTECTED] wrote: 1. How efficient is to use XML+XSLT solution? Does it add processing overhead to the system? The efficientcy is relative to many factors, however I can stress this. The style sheets can be cached

Re: [PHP] PHP/HTML Question

2003-07-17 Thread Ray Hunter
I have a quick question about PHP and HTML. I have a page that is supposed to update the status of hosts by pinging each host and displaying the result. I would like to get the page to the point that I can have something (either PHP or JavaScript or the like) ping every 10 seconds or

Re: [PHP] Redirection Question

2003-07-22 Thread Ray Hunter
Use sessions or cookies to store the first page they are trying to access. Then if not logged in redirect them to the login.php page. After login is successful then they can be redirected to the values that was specified in the cookie or seesion variable. -- BigDog On Wed, 2003-07-23 at 13:44,

[PHP] Random Images

2003-02-05 Thread Tom Ray
I'm trying to set it up so that a random image from either a mysql table or a text file list is displayed on a page each time a user goes to it. I'm a little stumped as to how to do this with phpany suggestions? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] php-cli

2003-02-10 Thread Ray Hunter
you will want to issue a cls command to the shell with the exec command for using the back ticks... That should do it for you... example: exec( cls ); That should do it for you... Ray On Mon, 2003-02-10 at 21:20, Michael P. Carel wrote: Hi to all, Is there anyone who could help me

Re: [PHP] help me

2003-02-11 Thread Ray Hunter
make sure that the php3_xml.dll is in your system path and it can be found. Ray On Tue, 2003-02-11 at 07:38, Cavallaro, Vito wrote: how i do work php with xml? In php3.ini add extension = php3_xml.dll but not work. is runnig on winnt workstation -- PHP General Mailing List (http

RE: [PHP] help me

2003-02-11 Thread Ray Hunter
The system needs to be able to find the dll so you might need to add C:\PHP3 to your system path... On Tue, 2003-02-11 at 11:05, Cavallaro, Vito wrote: all *.dll are C:\PHP3 but internet explorer make unload the file.xml -Mensaje original- De: Ray Hunter [mailto:[EMAIL PROTECTED

Re: [PHP] Passing PostgreSQL resource

2003-02-12 Thread Ray Hunter
This is how i handle this concept: 1. Determine the number of rows from the query. 2. Set up limits on how many rows to display per page. 3. Then do multiple queries with those limits. Postgresql allows for queries with limits. That should get you started... Ray On Wed, 2003-02-12 at 09:58

Re: [PHP] processing status page

2003-02-15 Thread Ray Hunter
Are you using a form to get the input from the user... One way that I do it is with Javascript...that will be the easiest bet for you... On Sat, 2003-02-15 at 15:15, Brendon wrote: Hello, How can I create a page that notifies the user their request is being processed after they click a

Re: [PHP] processing status page

2003-02-15 Thread Ray Hunter
function in the body tag of the processing page to display the information from the submitted data... -- Ray On Sat, 2003-02-15 at 18:02, Brendon wrote: Yes, I'm using a form. How do you do it with Javascript? Do you have an example you can give? Brendon -- PHP General Mailing List (http

Re: [PHP] Forms Help (continued)

2003-02-15 Thread Ray Hunter
Do you have globals turned on or off? Ray On Sat, 2003-02-15 at 21:19, Beauford.2002 wrote: Has anyone seen or used this script? It looks fairly straight forward, but I can't get it to work. It is however, exactly what I need. Any help is appreciated. http://codewalkers.com/tutorials.php

Re: [PHP] Protecting files

2003-02-17 Thread Ray Hunter
. http://www.php.net/manual/en/configuration.changes.php http://www.php.net/manual/en/function.ini-set.php That should help you out. Ray On Mon, 2003-02-17 at 14:17, PR wrote: Hello, How can I protect my php files among other files like templates (.inc) and mysql config (config.inc) files

Re: [PHP] PHP form help

2003-02-19 Thread Ray Hunter
Please provide more information...ie source code so we can find the problem. Ray On Wed, 2003-02-19 at 13:14, Steven M wrote: Hi, I have created a form that passes details to the next page so the user can see the details they have submitted before clicking confirm to submit

Re: [PHP] get insert_id in odbc

2003-02-19 Thread Ray Hunter
Looks like there is not a function for it built in but you should be able to query the sequence and get the number from there by writing your own function... -- Ray On Wed, 2003-02-19 at 13:28, Jonathan Villa wrote: Using MySQL, one can use mysql_insert_id to get the value of an auto_increment

Re: [PHP] Cron Job help Needed

2003-02-19 Thread Ray Hunter
Do a search at google for cron jobs tutorial... http://www.google.com/search?q=cron+job+tutorials That should give you lots to read... :) -- Ray On Wed, 2003-02-19 at 13:36, Pushpinder Singh Garcha wrote: Hello All, I need to ask you about some resources for cron jobs. Please suggest

Re: [PHP] Undefined offset notices

2003-02-19 Thread Ray Hunter
; eval($docmd); } } } NOT TESTED...check and see if it works.. -- Ray On Wed, 2003-02-19 at 22:54, Shawn McKenzie wrote: While debugging my code, that seems to work fine, I see hundreds of these notices, many different ones with different offset numbers same line

Re: [PHP] Computer Authorization

2003-02-20 Thread Ray Hunter
domain name, wins, kerberos, nis, mac-address those might be what you need... if you are using dhcp then you can get the ip information from the dhcp number based on the mac address... but remember that these can be spoofed... On Thu, 2003-02-20 at 17:59, Chris Cook wrote: Hello all, I am

Re: [PHP] MAC address user recognition?

2003-02-20 Thread Ray Hunter
Remember that the mac address gets changed by devices on the network... -- Ray On Thu, 2003-02-20 at 20:29, Leo Spalteholz wrote: I've been thinking about how to do authentication and user recognition for my site without cookies. I had this idea but I don't really know if its possible

[PHP] Utah PHP User

2003-02-21 Thread Ray Hunter
I am thinking of starting a Utah PHP user group. If there are any Utah php user out there, please let me know if you would be interested in starting a user group for PHP. Thanks, Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can't run PHP cli script from Cron

2003-02-28 Thread Ray Hunter
You might want to post some code so we can see why it is not running... What do you get when you run the code from the commandline? -- Ray On Thu, 2003-02-27 at 21:30, Justin Michael Couto wrote: I am trying to run a PHP CLI script from cron using PHP 4.3 and FreeBSD 5.0 This is what I

[PHP] Little help please

2003-02-27 Thread Tom Ray
I'm looking for a webbased interface that will allow me to managae mysql databases. However, phpmyadmin has been ruled out due to the fact it requires the username and password to be stored in the config file and that it doesn't have any security to protect the average joe from stumbling across

Re: [PHP] Calendar Controls

2003-03-05 Thread Ray Hunter
Also, i would check out phpclasses or search on google for other php users that have created specific classes for what you are trying to accomplish. http://www.phpclasses.org -- Ray On Wed, 2003-03-05 at 05:23, shaun wrote: http://calendar.msn.com/ has some great controls for veiwing dates day

Re: [PHP] two buffers??

2003-03-05 Thread Ray Hunter
Review the file functions and you will find what you need: http://www.php.net/manual/en/ref.filesystem.php Like the functions: 1) file_get_contents() and 2) file() -- Ray On Wed, 2003-03-05 at 07:40, Mattia wrote: i need to put in a var all the processed contents of a .php file in my

Re: [PHP] Still having a problem with IF/ELSE Statement

2003-03-06 Thread Ray Hunter
line\n; } One of those should work based on the code. However, based on the variables $Row and $status that might not be the case. -- Ray On Thu, 2003-03-06 at 05:31, Hunter, Jess wrote: I want to tahnk those that responded to my previous post, seems I was doing this all the wrong way. I am

Re: [PHP] PEAR problems

2003-03-06 Thread Ray Hunter
You might want to jump on the horde mailing list seeing that it is an issue with horde and not fully with PEAR. Horde uses PEAR for error and logging capabilities. And there are some really good people on the horde list. -- Ray On Thu, 2003-03-06 at 05:41, José Manuel Valente wrote: Hi

Re: [PHP] stripslashes()

2003-03-08 Thread Ray Hunter
You could write a function like strippostslashes() that is called on everypage that access the $_POST or $_GET variables... -- Ray On Sat, 2003-03-08 at 23:29, John Taylor-Johnston wrote: I need to stripslashes() practically every $value as I pass data from one submit to another. L

Re: [PHP] Is the problem a server setting?

2003-03-10 Thread Ray Hunter
You should contact the web hosting system administrator and verify that they upgraded php. From what i can tell it seems that they did upgrade php. -- Ray On Mon, 2003-03-10 at 10:58, Chad Henderson wrote: I have a number of websites that are on a hosting company, that I have been using

Re: [PHP] Force refresh of graphic - how?

2003-03-12 Thread Ray Hunter
You can use the meta tags to do a refresh of the browser page... example: meta http-equiv=Refresh content=10; url=New-page.html after content you add the seconds of delay before refresh... More info on the meta tag: http://www.xs4all.nl/~dimaroan/htl/index.html -- Ray On Wed, 2003-03-12

Re: [PHP] Another questions about usning session.

2003-03-12 Thread Ray Hunter
But also note that session data can be stolen by other users too... -- Ray On Wed, 2003-03-12 at 10:10, Marek Kilimajer wrote: Advantage of session is that you can trust the variables you keep in your session. cookies can be spoofed André Cupini wrote: * People, sorry my ugly English. I

Re: [PHP] really simple problem with GET

2003-03-12 Thread Ray Hunter
You form tag should be passing the get request to the php script. example: form action=test.php?test=0 method=post ... /form In test.php all should work now... -- Ray On Wed, 2003-03-12 at 11:04, Poon, Kelvin (Infomart) wrote: Hi, I am sorry if the level of this question is too simple

Re: [PHP] authorization

2003-03-13 Thread Ray Hunter
The problem here is that most people work and do not have the time to help out. The best thing would to contract this portion out to the lowest bid. -- Ray On Wed, 2003-03-12 at 23:41, [EMAIL PROTECTED] wrote: Hello, I'm wonding if someone can please assist me with the following addition

Re: [PHP] install php

2003-03-13 Thread Ray Hunter
make sure you config line has the location of you mysql install.. example: /.configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.14 --enable-track-var -- Ray On Thu, 2003-03-13 at 00:14, sonjaya wrote: dear milist i want' instal php with mysql , itry like

[PHP] time() question

2003-03-13 Thread Tom Ray
Is there an easy way to display the epoch time given by time() in a human readable format? Basically, if I do $time = time(); and the insert that data into my mysql database and then pull that information out again how do I make it look like 2003-03-13 or a variant of that? TIA -- PHP General

Re: [PHP] Re user Identifying

2003-03-13 Thread Ray Hunter
Yes you can set up both in parallel...however, that is going to be tons of work for your system to manage. You can set up both that allows either sessions or cookies. -- Ray On Thu, 2003-03-13 at 01:55, Peter Goggin wrote: My site uses shopping baskets to record what the user wants

Re: [PHP] PHP and MySQL Full Text Search Problem

2003-03-13 Thread Ray Hunter
/Fulltext_Search.html (bottom of page). -- Ray On Thu, 2003-03-13 at 23:39, Charles Kline wrote: Hi all, My first try at MySQL Full Text Search and it is not behaving ;) Here is what I have for my query string: $sql = SELECT id, concat(fname, ' ', lname, ' ', degree1) as name

Re: [PHP] Can't relocate to a specified URL after submit.

2003-03-13 Thread Ray Hunter
Where is the js code in the mix. Try putting an exit; after the header function and see if that works. -- ray On Thu, 2003-03-13 at 23:02, [EMAIL PROTECTED] wrote: The code looks like: if( $actionflag == delete ) { //Delete Table ip_enrollment $query=delete from ip_enrollment

Re: [PHP] setup connection to sybase

2003-03-13 Thread Ray Hunter
With the installation of sybase on the windows 2000 server (client installation) you will get an interfaces file that contains all the information for connecting to a sybase database. Make sure that you have the sybase client installed on the windows 2000 box that is running PHP. -- ray On Wed

Re: [PHP] 2 databases

2003-03-19 Thread Ray Hunter
yes, as long as you have them compiled and configured into php. I have used up to 4 database type for a given application: mysql, pgsql, oracle, and sybase... That is the beauty of PHP... -- Ray On Wed, 2003-03-19 at 16:21, Iwan van Kanten wrote: Is it possible to connect to 2 different

Re: [PHP] The tool that generates documentation for PHP's website

2003-03-24 Thread Ray Hunter
The system is done with xml and xslt and uses the docbook utilities like jade, jadetex, sgml and other utilities. -- Ray On Mon, 2003-03-24 at 05:48, James wrote: I'm refering to the type of documentation that mysql and php has on their websites, where you have chapter headings and sections

RE: [PHP] Passing data between the web to an Intranet

2003-03-26 Thread Ray Hunter
a serial connect to transmit the database. HTH -- Ray On Wed, 2003-03-26 at 01:40, Steve Jackson wrote: Haven't the faintest idea what you mean by direct from the web and a secure Intranet mysql db and web DB. Sorry. What I mean is that we have an externally hosted website

Re: [PHP] Installation Problem

2003-03-26 Thread Ray Hunter
Maybe have this: LoadModule php4_module modules/libphp4.so AddType application/x-httpd-php .php I would load the module first and then add the type...might not make a bit of difference. -- Ray On Wed, 2003-03-26 at 03:24, bob pilly wrote: Hi Im trying to install php-4.3.1 as a dynamic

Re: [PHP] MySQL's connection information.

2003-03-26 Thread Ray Hunter
user/group apache is running under. -- Ray On Wed, 2003-03-26 at 09:46, Edmond Baroud wrote: Hi all, I've been using php in a local Unix environement where I never had to worry about read permissions of users/groups on my db connection's config file which contains the user and password. I'm

RE: [PHP] How to Return 403 Forbidden headers

2003-03-27 Thread Ray Hunter
What browser are you using... IE has its own 404 pages that it displays when it gets those types of headers. -- Ray On Thu, 2003-03-27 at 08:58, Christopher Ditty wrote: Thanks, but it returns a blank page. Matt Schroebel [EMAIL PROTECTED] 03/27/03 09:52AM -Original Message

Re: [PHP] Internet Explorer toolbar

2003-03-27 Thread Ray Hunter
This is why it is imperative that the user first research the topic (problem) via on-line references (search engines, docs, howtos,etc) then post to the mailing list when all these resources have been exhausted. -- Ray On Fri, 2003-03-28 at 02:43, Haseeb Iqbal wrote: hello, just want

Re: [PHP] How to debug XSLT Errors?

2003-03-28 Thread Ray Hunter
the xsl code. -- Ray On Fri, 2003-03-28 at 10:22, Benjamin Walling wrote: I'm trying to use the xslt_* functions, but I can't get any decent error messages out of them. I've used the XML and XSL I'm passing it in IE, and it gets processed and transformed correctly. The only error I get

[PHP] Complete development software

2002-10-03 Thread Ray, James A
Other then Abriasoft, is there another complete software package that contains PHP, MYSQL, APACHE and PERL for Windows? Thank you Jim

RE: [PHP] how to configure with ldap?

2002-10-13 Thread Ray Hunter
(http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Thank you, Ray Hunter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Blank PHP pages.

2002-10-16 Thread Ray Hunter
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Mika Tuupola http://www.appelsiini.net/~tuupola/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Thank you, Ray Hunter

[PHP] Questions on PHP Variables

2002-11-08 Thread Ray Seals
is? Ray -- --- Is the Internet down? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Questions on PHP Variables

2002-11-10 Thread Ray Seals
the script to load cleanly before I trouble shoot the database connector side. Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Building Menus based on User Rights

2002-11-11 Thread Ray Seals
trail to start going down. Ray -- --- Is the Internet down? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Building Menus based on User Rights

2002-11-11 Thread Ray Seals
helps, I'm new to all of this and not really a programmer but I would rather learn to do it the right way than the easy way. Ray On Mon, 2002-11-11 at 12:30, Jason Wong wrote: On Tuesday 12 November 2002 02:05, Ray Seals wrote: I would like for my pages to generate HTML code based on a users

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Ray Hunter
Database: 230 - Release Date: 10/24/2002 -- Thank you, Ray Hunter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ldap strong authentication

2002-11-12 Thread Ray Hunter
tia karim jafarmadar -- .: B i g D o g :. -- Thank you, Ray Hunter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how to pass multiple $_GET variables

2002-11-19 Thread Ray Hunter
HREF=action.html?action=deactivateconfirm=yes Should work... On Tue, 2002-11-19 at 20:44, Jeff Bluemel wrote: I'm using the following syntax, but evidently it's not correct. HREF=action.html?action=deactivate?confirm=yes thanks, Jeff -- Ray Hunter email: [EMAIL PROTECTED] www

Re: [PHP] php programming style

2002-11-21 Thread Ray Hunter
; } } if ($string = foo(1)) { echo $string; } else { echo 'error'; } ? Is this ok? Thank you, Beau -- Ray Hunter email: [EMAIL PROTECTED] www:http://venticon.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Help needed with the php.ini file

2002-11-21 Thread Ray Hunter
Singh Garcha _ Web Architect T. Falcon Napier and Associates, Inc. Off : 704 987 6500 Cell : 704 236 2939 Fax : 704 987 5002 _ -- Ray Hunter email: [EMAIL PROTECTED] www:http://venticon.com -- PHP General

Re: [PHP] Script Question

2002-11-21 Thread Ray Hunter
exists: . . if (document.myform.mytextfield) { . . This line will give me the javascript error document.myform.mytextfield is undefined If it does exist, then it works fine. So how do I test if a field exists without getting an error? Thanks for any help. -- Ray Hunter email

Re: [PHP] Script Question

2002-11-21 Thread Ray Hunter
is undefined If it does exist, then it works fine. So how do I test if a field exists without getting an error? Thanks for any help. -- Ray Hunter email: [EMAIL PROTECTED] www: http://venticon.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] PHP Coding HELP

2002-11-21 Thread Ray Hunter
they'd be automatically removed, though just to be made so people couldn't download them anymore would be great. Please help! Thanks! Vicky -- Ray Hunter email: [EMAIL PROTECTED] www:http://venticon.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] phpUpLoad

2002-11-22 Thread Ray Hunter
Hint: Never change your directory or file to mod 777 that just invites hackers, plus it is a bad habit. The best thing is to make sure that your directory is owned by your apache server and that it is writeable for that user... Verify the user in your httpd.conf file and change the directory

[PHP] PHP + Java

2002-12-02 Thread Ray Hunter
extensions_dir=/usr/local/lib/php/extensions/no-debug-non-zts-20020429 extension=java.so Thanks, -- Ray Hunter email: [EMAIL PROTECTED] www:http://venticon.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Change cell colour with selection from a drop down menu

2003-09-30 Thread Ray Hunter
I am putting together a web site with graphics from the artist and I need to learn how to change the image when I hover over it. Can you recommend a good javascript list or resource, particularly for someone who doesn't want to learn a lot of javascript? I have not found a great website

Re: [PHP] Installing Php with Apache on Solaris

2003-10-01 Thread Ray Hunter
not use any system libraries. As for your questions: yes you can do it. -- Ray On Wed, 2003-10-01 at 07:58, Donahue, Peter wrote: I want to build Php(4.3.3) for Apache(1.3.28) on Solaris 8. I am configuring Php with oci8 (Oracle) support. Is it possible to build Php on system A, and then move

Re: [PHP] exec command

2003-10-01 Thread Ray Hunter
I want to execute #useradd -d /home/all -g wahtever -s /bin/bash newuser You have to be root to add a user to the system...and just a heads up...you might want to rethink doing this from apache or php. The security implications alone make me cringe. -- Ray -- PHP General Mailing List (http

Re: [PHP] Date Sorting

2003-10-01 Thread Ray Hunter
Try using any of the sort functions: sort asort arsort ksort krsort ... That should get you started. -- Ray On Wed, 2003-10-01 at 07:18, Greg Wiley wrote: Apologies if this has been asked before but I couldn't find anything on google or any of the PHP code sites that quite fits my

RE: [PHP] Installing Php with Apache on Solaris

2003-10-01 Thread Ray Hunter
libraries should be installed by the user. However, I would suggest checking with oracle on this. -- Ray On Wed, 2003-10-01 at 08:12, Donahue, Peter wrote: How would I build them with all of the libraries? Also - is it OK for me to ship Oracle libraries to customers to install on a system

Re: [PHP] how to call a script every (say) 5 minutes

2003-10-01 Thread Ray Hunter
On linux do run the following commands: $ man cron $ man crontab $ man 5 crontab That should get you started with cron on linux... HTH, Ray On Wed, 2003-10-01 at 08:53, Jan Hübbers wrote: Hi all, can someone point me to a quickstart to the following problem? I'd like the OS

Re: [PHP] exec shell command from php

2003-10-01 Thread Ray Hunter
that account. If the account is not activated within a desired account then that account needs to be deleted immediately. These is just something off the top of my head. There needs to be tons of time put into this and planned out or your box will become a hackers haven. -- Ray On Wed, 2003-10-01 at 09

Re: [PHP] Variables not passed on localhost setup

2003-10-01 Thread Ray Hunter
rename php.ini-recommended to php.ini and put it in C:\windows and you can now use that file. -- Ray On Wed, 2003-10-01 at 10:52, Greg Watson wrote: Thank you for that answer! That worked perfectly! That leads me to another query, again, which I have searched for... I'd like to be able

RE: [PHP] Help with treeview

2003-10-02 Thread Ray Hunter
Does anyone know how to implement a treeview style display in PHP? PEAR has a treeview that I have used in the past and it works fine. http://pear.php.net/package/HTML_TreeMenu -- BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP as a Servlet in Tomcat

2003-10-03 Thread Ray Hunter
Try running php is from a servlet environment. Basically in tomcat you set up a servlet that handles your *.php files and calls the php executable. This is like php cgi so it can be slow. -- BigDog On Fri, 2003-10-03 at 12:11, David Erickson wrote: Hi I am wondering if anybody has

Re: [PHP] enable FTP support

2003-10-09 Thread Ray Hunter
Can you send what lines you have before the make[1] there should be some additional error information? -- BigDog On Thu, 2003-10-09 at 09:03, Jay Blanchard wrote: I am trying to enable FTP support on one of our test servers running PHP 4.2.2 1. rm config.cache 2. ./configure --enable-ftp

Re: [PHP] XML / XLS application

2003-10-10 Thread Ray Hunter
So what is your questions concerning php? --- BigDog On Fri, 2003-10-10 at 23:28, [EMAIL PROTECTED] wrote: Hello mailing list, I have a question about the use of XML / XLS application, I am introducing myself in this technology, What is useful XML / XLS for? , I need a basic example,

Re: [PHP] mozilla

2003-10-16 Thread Ray Hunter
Heavens no... -- Ray On Thu, 2003-10-16 at 10:24, Joseph Bannon wrote: Does IE use mozilla? I'm writing a PHP script to keep track of user agents. J. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] intercepting URLs in a control-system

2003-10-16 Thread Ray Hunter
Having read quite a bit on-line, I am interested in trying to trap URLs sent to my site so I can process the request and respond without neccessarily having a real page to serve. If this makes any sense, how do I do it? Because I expect that apache (in my case) would not like a URL that

<    2   3   4   5   6   7   8   9   >