[PHP] Re: Back Button produces Parse Error

2004-03-09 Thread Michael Kunze
ror. > > My particular parse error says: > Parse error: parse error in > /Library/WebServer/Documents/nex/htdocs/index.php on line 52 > > Anyone? Hello, try to clear your browser cache. If you had this error earlier during testing and you havn't dissallow caching it may di

[PHP] Re: IMAP und Umlaute

2004-03-09 Thread Michael Kunze
k this page: http://de2.php.net/manual/en/function.preg-replace.php (example 5 can be of use) btw: it's not really necessary to actually remove any umlauts. if you use the correct encoding you should be fine. -- Michael Kunze http://www.smrealms.de/ Yo'momma so fat her big toe got stuc

[PHP] someone is loosing parameters

2004-03-04 Thread Michael Kunze
rs. i'm sure it has something todo with the location header. the server gets a 302 and does a GET request to get the requested page. maybe it fails to append any previous parameters? i'm lost. any help appreciated. best regards -- Michael Kunze http://www.smrealms.de/ I'll tell y

[PHP] Re: Get MySQL table field names

2004-02-29 Thread Michael Kunze
Matt Palermo wrote: > How can I get the field names from a specified MySQL table? I don't need > the data, I just want to get an array of the tables field names. use 'DESC table_name;' -- Michael Kunze http://www.smrealms.de/ Caterva carissima mea est Ille Quis. -- PHP

[PHP] Re: Mail class to send several e-mails within one smtp connection

2004-02-29 Thread Michael Kunze
t;SMTPKeepAlive() -- Michael Kunze http://www.smrealms.de/ Def: Children: The most common sexually transmitted disease. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Apache Log Stats and viewer?

2004-02-27 Thread Michael Kunze
Michal Migurski wrote: > It's not PHP, but it's probably exactly what you're looking for: > http://www.mrunix.net/webalizer/ http://awstats.sf.net - much better -- Michael Kunze http://www.smrealms.de/ Don't Steal. The government hates competition -- PHP

[PHP] Re: bug in PHP

2004-02-27 Thread Michael Kunze
l parent directories have at least read rights for the user your webserver is running under and the directories must have the execute bit set. -- Michael Kunze http://www.smrealms.de/ JABBA - EOL: End Of Lecture -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Send Attachments via mail using form

2004-02-26 Thread Michael Kunze
Dave Carrera wrote: > I would like to allow my visitors to send attachments via my contact form. the easiest way is to use the http://phpmailer.sf.net great piece of software. it has a simple function to add attachments. > Also would this be limited to one file or can multiple files be allowed ?