[PHP] php.net like doc pages

2004-07-17 Thread \[php\]Walter
Anyone know a blog (I think) that will let me create documentation and let users add their comments to the tail of it, just like php.net can do?? Thanks Walter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: sessions pls help

2004-05-18 Thread \[php\]Walter
Take a look at PEAR:Auth Walter "Robi" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > > I need some info about sessions in php, > to clarify my knowledge and usage. > So lets imagine that > I am building a web site > where I can log in and log off, > it is without db. >

[PHP] Re: Select box

2004-05-18 Thread \[php\]Walter
Sure! '; $sqlu = "SELECT id,user,name '; $sqlu .= "FROM users '; $sqlu .= "ORDER BY user ASC"; $name_result = mysql_query($sqlu); while($rowu=mysql_fetch_array($name_result)){ echo ''; echo $rowu[user]; echo '' . "\n"; } echo ?> Walter -- PHP General Mail