Re: [PHP] Online Host Management Software

2002-08-20 Thread Jason Reid
There are quite a few options, but unless you have root access to the server, most you cant implement. not all of them are php based, but heres the list: free: simplecp (perl) webmin (perl, not the greatest for hosting) cost: cpanel plesk hsphere ensim there are others, one suggestion is search

Re: [PHP] How Do You Protect Individual Files

2002-08-20 Thread Jason Wong
On Wednesday 21 August 2002 08:59, Roger Lewis wrote: > I haven't been able to find much on this subject in the archives. > > Using sessions I have been able to have the server validate the user's > access level before serving him a page. I put include files on each page > that I want authentica

Re: [PHP] sort()-help needed

2002-08-20 Thread Jason Wong
On Wednesday 21 August 2002 06:41, Øystein Håland wrote: > "Put them into an array and sort() the array. The loop through the sorted > array and output at that point." > > Just what I try. But, because of my lack of understanding, the output is my > problem: > You're not doing what has been sugg

Re: [PHP] xslt extensions

2002-08-20 Thread Tom Rogers
Hi, Wednesday, August 21, 2002, 8:26:29 AM, you wrote: G> Is there a soul who has the xslt extensions compiled with php 4.2.2, G> sablotron 0.95 and expat 1.95.4 and working on Linux who is willing to G> give me some tips? G> I have tried the suggestions here: G> http://www.php.net/manual/en/re

Re: [PHP] patch for sablotron

2002-08-20 Thread Tom Rogers
Hi, Wednesday, August 21, 2002, 6:21:30 AM, you wrote: G> I have been struggling to compile php(4.2.2, mandrake 8.2, apache G> 1.3.26) with xslt support for over 3 days now. I can configure with G> trouble like this: G> ./configure \ G> --with-apxs=/usr/lib/apache/bin/apxs \ G> --with-sybase=/

RE: [PHP] How Do You Protect Individual Files

2002-08-20 Thread Roger Lewis
On Wednesday 21 August 2002 08:59, Roger Lewis wrote: > I haven't been able to find much on this subject in the archives. > > Using sessions I have been able to have the server validate the user's > access level before serving him a page. I put include files on each page > that I want authenti

[PHP] passing checkbox info

2002-08-20 Thread Brian & Shannon Windsor
I'm trying to use checkboxes to be able to delete information from my database. It's just not working right. I can't get the checkbox form to pass a variable that makes any sense to me, and I looked into the check box function, and it made less sense. The value passed back from the check boxes

RE: [PHP] passing checkbox info

2002-08-20 Thread Martin Towell
replace "xxx" with the row number for your id field when it gets to php, the index of $cbox will be the id from the database, just use: foreach ($cbox as $id=>$dummy) to loop through the array HTH Martin -Original Message- From: Brian & Shannon Windsor [mailto:[EMAIL PROTECTED]] Sen

Re: [PHP] How Do You Protect Individual Files

2002-08-20 Thread Jason Wong
On Wednesday 21 August 2002 10:54, Roger Lewis wrote: > I did, but like I said, I couldn't find much. Maybe I wasn't using the > correct key words. There is a lot about protecting php and html files but > not much on other, non-php files in external directories. There is some > discussion abou

Re: [PHP] passing checkbox info

2002-08-20 Thread Jaski
1)Name value pairs of check boxes which are checked will be returned. 2)To figure out which check box is returning "yes" you can use the keys of the cbox[] array which is returned. That is if your query returns 10 rows .. and user checks checkbox 1,3 and 5 out of those .. then $cbox[0], $cbox[

Re: [PHP] How Do You Protect Individual Files

2002-08-20 Thread Justin French
On Wednesday 21 August 2002 10:54, Roger Lewis wrote: > I did, but like I said, I couldn't find much. Maybe I wasn't using the > correct key words. There is a lot about protecting php and html files but > not much on other, non-php files in external directories. There is some > discussion abou

[PHP] phpMyAdmin

2002-08-20 Thread Steve Jackson
Is it possible to use phpMyAdmin to add new databases (not tables whole databases) to my website? I ask because currently my host has provided me with one database and I don't want to mix database tables when adding new features (such as shopping carts and bulletin boards)? I am new to MySQL and P

Re: [PHP] phpMyAdmin

2002-08-20 Thread @ Edwin
All depends on your host and how phpMyAdmin was configured. It's better to ask them directly... - E > >Is it possible to use phpMyAdmin to add new databases (not tables whole >databases) to my website? I ask because currently my host has provided >me with one database and I don't want to mix dat

<    1   2