OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
Subject: php3 Digest 11 Mar 2000 18:00:02 -0000 Issue 1531
From: php3-digest-helplists.php.net
Date: Sat Mar 11 2000 - 12:00:02 CST


php3 Digest 11 Mar 2000 18:00:02 -0000 Issue 1531

Topics (messages 80737 through 80764):

i suck.
        80737 by: "digitsix" <digitsixdigitsix.com>

SELECT boxes and PHP
        80738 by: Alexandre Reis <alexreissuper11.net>
        80739 by: "Justin R. Miller" <justinopenup.com>
        80755 by: Ken Jenks <kjenksabiblion.com>

MySQL Point Of Sale
        80740 by: KevinWaterson <hatemailoceania.net>

Thanks
        80741 by: Diego Mohadeb <diegoemtangofashion.com.ar>

eregi and problem with regular expression
        80742 by: "NickM" <teradohotmail.com>

Php3 does not recognise php-pgsql functions!
        80743 by: "Fred Mungandi" <mungandfzanaco.co.zm>
        80745 by: rasmusphp.net

not getting the horizontal scroll in frame.
        80744 by: "Niranjan Kulkarni" <niranjancnpl.co.in>
        80762 by: "NickM" <teradohotmail.com>

Attachments
        80746 by: "Leon Mergen" <leonsolatis.com>
        80748 by: Gianluca Baldo <webmasteralbasoftware.com>

Old Manual + Features Since Version
        80747 by: Stephane Moureau <thx1133freegates.be>

indexing (search engines) of dynamic pages, replace solution ?= w /
        80749 by: waldschrott <waldschrottkiffen.de>

Freeware script for Membership management
        80750 by: jimmychanthemail.com
        80752 by: Boaz Yahav <berbernetvision.net.il>
        80764 by: mocha_php <mocha_phpyahoo.com>

Toolkit choice
        80751 by: Cliff Rowley <dozpromptonsea.com>

Toolkit choice (more!)
        80753 by: Cliff Rowley <dozpromptonsea.com>
        80763 by: "NickM" <teradohotmail.com>

Build a cron job with php3/php4
        80754 by: Alessio Iorio <werbungiorio.de>
        80760 by: Tom <tomhenrydirect-connection.com>
        80761 by: Lloyd Zusman <ljzasfast.com>

If problems - querying a database.
        80756 by: "WL" <willlocalads.net>

phps
        80757 by: Boaz Yahav <berbernetvision.net.il>

PHP Mailing List questions
        80758 by: "WL" <willlocalads.net>

What is serialization and persistent slots?
        80759 by: mocha_php <mocha_phpyahoo.com>

Administrivia:

To subscribe to the digest, e-mail:
        php3-digest-subscribelists.php.net

To unsubscribe from the digest, e-mail:
        php3-digest-unsubscribelists.php.net

To post to the list, e-mail:
        php3lists.php.net

----------------------------------------------------------------------

attached mail follows:


Hi, (help with phorum please)

Ok, i have narrowed my problem down, admin.php3 cannt connect to the mysql
database... ok, here is what i did and mybe you guys could help me...

mysql> create database forum;
Query OK, 1 row affected (0.13 sec)

mysql> GRANT
    -> select, insert, update, create, alter, delete, drop
    -> ON
    -> forum.*
    -> TO
    -> phorumlocalhost
    -> IDENTIFIED BY
    -> 'password';
Query OK, 0 rows affected (0.01 sec)

then i ran admin.php3 and got the infamous
Warning: Host 'fbi.digitsix.com' is not allowed to connect to this MySQL
server in ./abstract.php3 on line 63
error.

I was told that I should edit forums.inf to match my db info so i did the
following...

  $dbName='forum';
  $dbUser='phorum';
  $dbPass='password';
  $dbServer='fbi.digitsix.com';

i did that (not sure if the dbserver line is correct though... I also tried
it with 'mysql' as the server) but it didnt work... im kinda stuck between a
rock and ahard place here, could some one please help?

-digitsix

attached mail follows:


I'm just wondering what the heck did I do wrong on this... When I put this
code in an text area it works ok, but when I try it in an SELECT box it
dowsn't work. Can someone help me?


Here's the code:

-------
Vendedor:<SELECT NAME="vendedor">
<?
$hostname="localhost";
$username="odomed";
$password="odomed";
MYSQL_CONNECT($hostname,$username,$password) OR DIE("Unable to connect to
database");
mysql_select_db("odomed") or die("Unable to select database");
$result=mysql_query("SELECT * FROM vend order by nome");
if ($row = mysql_fetch_array($result)) {
do {
$nome="<OPTION>$row["nome"]";
print "$nome\n";
 } while($row = mysql_fetch_array($result));
 } else {print "Nenhum registro encontrado";}
 ?>
</SELECT>
----------------
The table and data:

----------------
#
# Table structure for table 'vend'
#

CREATE TABLE vend (
   nome mediumtext NOT NULL,
   equipe tinyint(1) DEFAULT '0' NOT NULL,
   codigo smallint(3) DEFAULT '0' NOT NULL
);

#
# Dumping data for table 'vend'
#

INSERT INTO vend VALUES( 'Joao', '1', '0');
----------------------

I would be very thankful if someone debugs the code for me...
Sorry for the length of the message :(

Thanks

Alex Reis
Super11 - O e-mail do Brasil -- http://www.Super11.net
Faça já o seu. É gratuito!!!

attached mail follows:


Alexandre Reis wrote:

> $nome="<OPTION>$row["nome"]";
> print "$nome\n";

Try this:

        print("<OPTION>" . $row["nome"] . "\n");

I find that when using hashes in the form of $row["column"] it is best
to just concatenate them with regular strings while printing them.

Justin

-- 
              _ ___ __  __                                              
 +-=====-  _ | | _ \  \/  | -======- Justin R. Miller -==============-+ 
 |        | || |   / |\/| |          justinopenup.com                | 
 +-=====-  \__/|_|_\_|  |_| -======- http://openup.com/justin/ -=====-+

attached mail follows:


I do this so often that I've made a function in my standard library routines:

// populate_select($id_field,$name_field,$table_name,$where_clause) // // Grab two fields from a table and build an HTML <SELECT>, filling // the <OPTION> tags with values from the database. // // Call it like this: // populate_select('user_id','name','users',"WHERE name != ''"); // function populate_select($id_field,$name_field,$table_name,$where_clause) { global $database_name; echo "<SELECT NAME=\"$id_field\">\n";

$this_info = mysql($database_name, "SELECT * " . "FROM $table_name $where_clause " . "ORDER BY $name_field");

/* Check query results */

$num_records = -1; if ($this_info >= 0) { $num_records = mysql_numrows($this_info); } if ($this_info < 0 || $num_records <= 0) { // Do nothing } else { $i = 0; while ($i < $num_records) {

$id = mysql_result($this_info, $i, $id_field); $name = strip_result($this_info, $i, $name_field);

echo "<OPTION VALUE=\"$id\">$name\n";

$i++;

} /* end while loop for $num_records */ mysql_FreeResult($this_info); }

echo "</SELECT>\n"; }

So what routines do you keep in your standard PHP toolbox?

-- Ken Jenks, http://abiblion.com/

Tools for reading.

attached mail follows:


Is there a PHP/MySQL point of sale script about.. Not an e-commerce type application but a shop front for use with cash drawer etc I would hate to re-invent the wheel

Kevin

attached mail follows:


Realy thanks to all, now I have the PHP3 manual and print it.

:)

attached mail follows:


Try it like this: if(ereg("^([0-9a-zA-Z]+[.]?[0-9a-zA-Z]+)[]{1}", $addr, $matches)){

You should pay attention to your warning logs they will alert you to incorrectly using the \. You should make sure in php.ini you have all warning visible.

Nick

----- Original Message ----- From: <nallannimailbox.com> To: <php3lists.php.net> Sent: Saturday, March 11, 2000 5:06 AM Subject: [PHP3] eregi and problem with regular expression

> Hi all > I'm trying to use the regular expression function eregi in php. > I'm trying to create a regular expression that will match all valid email > addresses, but just the name part. ie the bit before the sign. > > code shown > if (eregi("[0-9a-zA-Z]+\.?[0-9a-zA-Z]+", $txtEmail)) > echo "passed"; > else > echo "failed"; > > I want to allow names like > john.smith > johnsmith > jon12.smith > but not > john. > .john > > Using grep under linux the regular expression appeares to work, but Using php, > I keep getting a false back. What am I doing rong? > > > Thanks in advance for any suggestions. > > Regards Nick > > > > -- > PHP 3 Mailing List <http://www.php.net/> > To unsubscribe, send an empty message to php3-unsubscribelists.php.net > To subscribe to the digest, e-mail: php3-digest-subscribelists.php.net > To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 > To contact the list administrators, e-mail: php-list-adminlists.php.net >

attached mail follows:


I have a problem. I am using Apache, PHP3 and PostresSQL on a Debian Linux (Corel Linux) Box.

I have installed php3, php-pgsql and posgres. I have also configured by apache to recognise php3.

The problem is that php3 does not seem to recognise the php-pgsql functions.I am get the following error when I try to connect to the pgsql database:-

"Fatal error: Call to unsupported or undefined function pg_connect()"

How do I tell php3 about php-pgsql?. What could be wrong?.

Fred Mungandi ---------------------------------------------------------------- Tel: +260-1-223081 Fax: +260-1-224056 Home: +260-1-262055 Cell: (01) 702606 e-mail: mungandfzanaco.co.zm

attached mail follows:


> I have a problem. I am using Apache, PHP3 and PostresSQL on a Debian Linux (Corel Linux) Box. > > I have installed php3, php-pgsql and posgres. I have also configured by apache to recognise php3. > > The problem is that php3 does not seem to recognise the php-pgsql functions.I am get the following error when I try to connect to the pgsql database:- > > "Fatal error: Call to unsupported or undefined function pg_connect()" > > How do I tell php3 about php-pgsql?. What could be wrong?.

You have to load the pgsql.so module using either the dl() function in your PHP script or by listing it as an extension in your php3.ini file.

-Rasmus

attached mail follows:


hello everybody,

In my application I have created a three frames one at top , one at left and one beside it.In the left frame I have a tree structure displayed my me and I want to accomodate the bigger names in this frame. But I have told not to expand the frame width. So the only option left is to put the horizontal scroll bar at the botton of the frame. But I am not getting the method or option in HTML which will give me a horizontal scroll bar even though I am getting the verticalo one with SCROLLING="yes". Pl. help me

Thank u

Niranjan Kulkarni, Cybertech Networks Pvt. Ltd. Nasik.

attached mail follows:


The problem is not scrolling, this will only affect if can scroll down as by default text word wraps and so you won't ever need to scroll sideways unless you have and image or something wider.

What you should do is to make a table for your contents panel if you don't already and add the option nowrap to the td cells you want to stretch out wide, like so:

<table border="0"> <tr> <td nowrap>This has some really fat long text.</td> </tr> </table>

Then the scroll sideways bars will appear if your frameset is setup correctly. You should have scrolling either as auto or yes.

Nick

----- Original Message ----- From: "Niranjan Kulkarni" <niranjancnpl.co.in> To: <php3lists.php.net> Sent: Saturday, March 11, 2000 10:46 AM Subject: [PHP3]not getting the horizontal scroll in frame.

> hello everybody, > > In my application I have created a three frames one at top , > one at left and one beside it.In the left frame I have a tree structure > displayed my me and I want to accomodate the bigger names in this frame. > But I have told not to expand the frame width. So the only option left > is to put the horizontal scroll bar at the botton of the frame. But I am > not getting the method or option in HTML which will give me a horizontal > scroll bar even though I am getting the verticalo one with > SCROLLING="yes". Pl. help me > > Thank u > > Niranjan Kulkarni, > Cybertech Networks Pvt. Ltd. > Nasik. > > > > > > -- > PHP 3 Mailing List <http://www.php.net/> > To unsubscribe, send an empty message to php3-unsubscribelists.php.net > To subscribe to the digest, e-mail: php3-digest-subscribelists.php.net > To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 > To contact the list administrators, e-mail: php-list-adminlists.php.net >

attached mail follows:


Ok, i'm sure this question has been asked a hundred of times, but since i just formatted my hard drive i have lost all the messages to the php mailing list i had so far. But my question is, how can i send a file attachment with email? something like you can add $array to the mail command, and then it includes all the files in $array ?

Carpe diem,

- Leon

attached mail follows:


Leon -

>how LM> can i send a file attachment with email? I use the functions you can find here: ftp://ftp.albasoftware.com/pub/mail_attach_bin.txt

I modified some existing functions someone posted to the list (for text attachments only) to have the ability to attach jpg and gif files. As far as I know they will work with any kind of file. There's also a brief usage notes expalining how to use those functions.

Regards,

Gianluca

--
ALBASOFTWARE
C/ Aribau 70 - 5º 1ª
08011 Barcelona (Spain)
Tel. +34 93454009 - +34 934549324
Fax. +34 934541979
 ICQ 47323154 
webmasteralbasoftware.com
http://www.albasoftware.com
http://www.phpauction.org
http://www.gianlucabaldo.com

attached mail follows:


Hi,

Thanks to those who have answered my sms question ;-) I'll soon check this out.

Is there somewhere an old version of the PHP3 manual in HTML format ? I'm looking for version 3.05.

I'm tired to develop and than discover that the -new- feature is not in the PHP3 version of my provider.

Or perhaps a table with all the functions and since which version they are available ?

Thanks in advance.

Sincerely

Stephane StocksRaiders - For active investors on speculative markets. http://209.90.185.55/users/srs/ - http://home.freegates.be/club-bourse

attached mail follows:


Hi, I know that it´s possible to have dynamic pages indexed replacing the ? and = signs with / signs, this seems to work on linux/unix systems, but at my local environment (win32) it does not work, apache (php or win) won´t access the file php.php3 in http://www.server.com/php.php3/s/true/n/4, it´ll try to access somewhat else and produces this error: Fatal error: Unable to open e:\web\db\index.php3\run\sys in Unknown on line 0 Does anyone know how to avoid this problem? wald

--
 o----------0-¬---------O-·---¬----o---®-----o o    O   °       .
 | http://www.kiffen.de | pRoteçt y0ur bRaín |0 O ° ¤ ° ·
 0°·³°²'²³-¹'³´³°^°³~³²³°'³²²¨³²^³¹³²°²³`³º³°Þ ° o © °   .  ·
 | psychedelic experience |  gottkiffen.de | O ° o °
 o-¬--o--0-----©-·--O-----o-----0-¤----------o  0 °  · °  .  ¤ ·

attached mail follows:


Is anybody know any good script that will have function like member registration.

Thanks a lot!

---
Earn money by reading e-mail from mailinglist
http://www.themail.com/ref.htm?ref=209373
Earn money by online, surf
http://www.geocities.com/SiliconValley/Monitor/5804/english.html
http://www.maxref.com/mrp/tope.cgi/earn/MX914291
-- 
__________________________________________________________________
Make A Buck Or Two  TheMail.com - Free Internet Email
Sign-up today at http://www.themail.com/ref.htm?ref=212394 

attached mail follows:


you mean something like : http://www.weberdev.com/index.php3?GoTo=get_example.php3?count=478

berber

-----Original Message----- From: jimmychanthemail.com [mailto:jimmychanthemail.com] Sent: Saturday, March 11, 2000 5:24 PM To: php3lists.php.net Subject: [PHP3] Freeware script for Membership management

Is anybody know any good script that will have function like member registration.

Thanks a lot!

---
Earn money by reading e-mail from mailinglist
http://www.themail.com/ref.htm?ref=209373
Earn money by online, surf
http://www.geocities.com/SiliconValley/Monitor/5804/english.html
http://www.maxref.com/mrp/tope.cgi/earn/MX914291
-- 
__________________________________________________________________
Make A Buck Or Two  TheMail.com - Free Internet Email
Sign-up today at http://www.themail.com/ref.htm?ref=212394 

attached mail follows:


http://phplib.netuse.de/

At 10:24 AM 3/11/00 -0500, jimmychanthemail.com wrote:

>Is anybody know any good script that will have >function like member registration. > >Thanks a lot! > > >--- >Earn money by reading e-mail from mailinglist >http://www.themail.com/ref.htm?ref=209373 >Earn money by online, surf >http://www.geocities.com/SiliconValley/Monitor/5804/english.html >http://www.maxref.com/mrp/tope.cgi/earn/MX914291 >-- >__________________________________________________________________ >Make A Buck Or Two TheMail.com - Free Internet Email >Sign-up today at http://www.themail.com/ref.htm?ref=212394 > > > >-- >PHP 3 Mailing List <http://www.php.net/> >To unsubscribe, send an empty message to php3-unsubscribelists.php.net >To subscribe to the digest, e-mail: php3-digest-subscribelists.php.net >To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 >To contact the list administrators, e-mail: php-list-adminlists.php.net

attached mail follows:


Greetings,

We've started work on a UNIX based 'developer studio' for PHP. We dont really want to give too much away at this point, so I wont go into detail. The design is nearing completion, and it'll soon be time to start coding.

The reason I'm mailing the list is to find out if there is a general X11 windowing toolkit. We are currently looking at Qt, FOX and GTK as possibilities.

At this stage we have no immediate plans to port the suite to Windows. FOX is already cross platform (though not very pretty), and in order to port to Windows using Qt we would have to purchase a commercial license (which is not out of the question) - Qt isour primary choice, since it also ports to Macintosh. GTK is not cross platform.

I realise that this isnt a software development list, but I figured that the best people to ask would be the people who could be using the software ;)

Let me know - what toolkits do you like? What ones dont you like? Please give reasons too. If you know of any cross platform toolkits that we may not have discovered, please let me know.

Thanks :)

Cliff Rowley

- while (!asleep) { code(); }

attached mail follows:


Sorry, I should have added:

1) The software will be open source.

2) Please reply privately, dont bother the list with this :)

Cliff Rowley

- while (!asleep) { code(); }

attached mail follows:


> 2) Please reply privately, dont bother the list with this :)

Why I'm interested to see peoples' opinions on this, it is in some way php related.

Nick

attached mail follows:


Hi!

The task is to build a cron-job via php3/php4 form! On my linux account i have to proceed the following steps to build a cron-job.

1. login via telnet ;-) 2. type "crontab -e" --> an Editor ("vi") window appears 3. type "i" --> to get into inserting-mode 4. type "*/10 * * * * ~/test.sh" --> write down my cron job 5. hit ESC --> to leave the i mode 6. press ":wq" --> save and finish file 7. type "crontab -l" --> check file

Is there a way to build this workflow with php-commands? i tried but .... ;-( Is someone out there who could help me?

Thanks

seth

attached mail follows:


Alessio,

I use a slightly different approach -- it works for me

Use crontab in the file input mode -- set up a file like this

-------------- file crontab_master.txt ----------------------- ## ## The first uncommented line causes the current version of ## the crontab_master.txt file to be reloaded ## at whatever interval you specify ## In this file my system needs absolute paths to all files/progs ## 0 0 * * * /abspathtoprog/crontab /abspathtofile/crontab_master.txt ## ## Read this file using PHP -- and ## ereg() for the COMMAND_START line ## then display the remaining lines for editing in a form ## COMMAND_START

15 23 * * * some command here 30 23 * * * some command here 45 1 * * * some command here 0 1 * * * some command here ---------------------------------------------------------------------

After editing the lines, re-write the file using the various parts

Hope that helps, TomH

At 04:32 PM 3/11/00 +0100, Alessio Iorio wrote: >Hi! > >The task is to build a cron-job via php3/php4 form! On my linux account >i have to proceed the following steps to build a cron-job. > >1. login via telnet ;-) >2. type "crontab -e" --> an Editor ("vi") window appears >3. type "i" --> to get into inserting-mode >4. type "*/10 * * * * ~/test.sh" --> write down my cron job >5. hit ESC --> to leave the i mode >6. press ":wq" --> save and finish file >7. type "crontab -l" --> check file > >Is there a way to build this workflow with php-commands? i tried but >.... ;-( >Is someone out there who could help me? > >Thanks > >seth > > > >-- >PHP 3 Mailing List <http://www.php.net/> >To unsubscribe, send an empty message to php3-unsubscribelists.php.net >To subscribe to the digest, e-mail: php3-digest-subscribelists.php.net >To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 >To contact the list administrators, e-mail: php-list-adminlists.php.net

-------------------------------------------------------------------- Work :-( http://BusinessWebs.com/ Home :-) http://MultihullBoatbuilder.com/ --------------------------------------------------------------------

attached mail follows:


Alessio Iorio <werbungiorio.de> writes:

> Hi! > > The task is to build a cron-job via php3/php4 form! On my linux account > i have to proceed the following steps to build a cron-job. > > 1. login via telnet ;-) > 2. type "crontab -e" --> an Editor ("vi") window appears > 3. type "i" --> to get into inserting-mode > 4. type "*/10 * * * * ~/test.sh" --> write down my cron job > 5. hit ESC --> to leave the i mode > 6. press ":wq" --> save and finish file > 7. type "crontab -l" --> check file > > Is there a way to build this workflow with php-commands? i tried but > .... ;-( > Is someone out there who could help me?

Well, first of all, do a `man crontab' from your unix command line. There you will see that you're not limited to doing this solely via the `vi' session that results from `crontab -e'. You can also issue the command `crontab FILE' where "FILE" is the name of a file that contains lines like this:

*/10 * * * * test/sh

Also, "FILE" can be `-' (a single dash), in which case the line above could be piped in via stdin.

If the `crontab' command is to be run for the same user that the web server is running as, what you want to do will be very easy in php:

$fp = popen("/path/to/crontab -", "w"); if (! $fp) { # some kind of error-handling code goes here } else { fputs($fp, "*/10 * * * * test/sh\n"); pclose($fp); }

However, if the crontab commands are to be run for a user other than the user of the web server, you have a problem, because unless you are running as "root", you can't issue a crontab command for a user other than yourself (the `-u user' option for crontab won't work for a user other than yourself unless you're running as root).

But there's still a potential solution for you: if you're running the Apache server, you could make use of the "suexec" module for Apache to make sure that the web page which invokes the php code above is running under the user ID whose crontab is to be modified. If you're not running Apache, you might still be able to do something akin to "suexec", depending on your web server.

Assuming Apache, you can find the documentation for "suexec" at the Apache web site: http://www.apache.org

> Thanks > > seth

Good luck.

HTH

-- 
 Lloyd Zusman
 ljzasfast.com

attached mail follows:


Hi,

I've been trying to get this going for ages now - I just cannot work it out. I have a form which allows users to subscribe themselves to become members. They enter the usal info, including email address which is checked against the database using the code below. If it finds an email in the Users table, it tells me. If it doesn't, or if I enter a fak email address, it should say so and exit; but it says "Warning: Using scalar variable $checkemail_row as an array or object in /home/favasa/www.favasa.org.uk/htdocs/members/index2.phtml on line 73"

So basically, it's not running the `else` bit. Why?

Thanks for any help,

Will

$id = mysql_insert_id(); $insert_users = "INSERT INTO before

(title,name,email,school,dept,address1,address2,address3,address4,phone,righ ts,pass) VALUES ('$title','$name','$email','$school','$dept','$address1','$address2','$addre ss3','$address4','$phone','$rights','$pass')"; $checkemail = "SELECT * FROM users WHERE email = '$email'"; $checkemail_result = mysql_db_query($dbdb,$checkemail,$connection);

if ($checkemail_result) {

$checkemail_row = mysql_fetch_object($checkemail_result); echo("The following error occurred:<p><b>The email address entered(</b>$checkemail_row->email<b>) is already present in the database. Please go back and check you entered your correct address.<p>Alternatively, <a href='pass.phtml'>request</a> your password is emailed to you.");

echo("<table width='303' border='0' cellspacing='0' cellpadding='0'>"); // There's a load more code here for the table and layout which I have excluded.

");

exit; }

} else { echo("Haven't found that email in there, no, sorry.."); // mysql_db_query($dbdb,$insert_users,$connection); // echo mysql_errno().": ".mysql_error()."<BR>"; // echo ("User <b> $email </b> entered successfully into database");

// I deliberatley commented the above out until I know it works.. // There's a load more code here for the table and layout which I have excluded.

"); exit; }} ?>

Web Developer and Programmer for Lukrative Media Ltd http://www.lukrative.com Domain Names-> http://CreativeNames.co.uk Classified Ads-> http://www.LocalAds.Net

attached mail follows:


Hi

I'm having trouble with viewing phps files. If I remember correctly it they should show the php code in color.

I guess I'm missing the phps configuration in httpd.conf or something. Can it be set for a specific dir with .htaccess? what is the line that should go there?

thanks

berber

attached mail follows:


Hi,

Is there a Newsgroup server I can access the Mailing List on? And, does anyone know just how many people read this list? :)

Cheers,

Will

Web Developer and Programmer for Lukrative Media Ltd http://www.lukrative.com Domain Names-> http://CreativeNames.co.uk Classified Ads-> http://www.LocalAds.Net

attached mail follows:


Could some one please explain the concept of serialization and persistent slots? I've seen this posted several times and it's used in PHPLIB as well. I simply have no idea what that concept is. Thanks.