[PHP] NEW !! ecTemplate !! NEW

2001-09-11 Thread Jeroen Olthof
http://www.millipede.nl/ectemplate/ hi, I was inspired by fasttemplate. the idea of separate your HTML code from the PHP code. but when I first start usinging fasttemplate, it removed all my javascript function definitions. This was a reson for me to do a rewrite in my own way. starting from

Re: [PHP] World Trade Centre Hit By terrorists, also pentagon

2001-09-11 Thread Alexander Skwar
So sprach »[EMAIL PROTECTED]« am 2001-09-11 um 17:36:59 +0100 : I'm sure your is the view shared by the VAST, VAST majority on both sides. Michael Quoting Clint Tredway [EMAIL PROTECTED]: I am sorry, but the problem is the exact opposite. If people would turn back to God and

Re: [PHP] Other lists

2001-09-11 Thread Data Driven Design
The lists from the html writers guild are good. www.hwg.org Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: Seb Frost [EMAIL PROTECTED] To: php list [EMAIL

Re: [PHP] World Trade Centre Hit By terrorists, also pentagon

2001-09-11 Thread Nael Mohammad
This is a PHP list and off the topic Nael Mohammad 180 Montgomery St. Suite 2000 San Francisco CA, 94104 Phone: 415-403-7300 x314 Fax: 415-403-7373 Mobile: 415-793-0609 www.neomar.com -- Neomar - When Wireless Means Business -- PHP General Mailing List

Re: [PHP] World Trade Centre Hit By terrorists, also pentagon

2001-09-11 Thread Christopher CM Allen
Well, exactly not! Just look at the track record of believe. May I remind you of the great deeds in the name of god (which god doesn't matter). Let me remind you of the deeds not done in Gods name - Hitler Deed's Stalin Deed's. Enough said... take it off the list. -- PHP General Mailing

Re: [PHP] mysql_db_query create table error

2001-09-11 Thread David Robley
On Wed, 12 Sep 2001 01:19, mkrisher wrote: All, I am trying to create a table in a mySQL database, seems like it would be easy enough, but for some reason it is not working, below is the code: // Query to create table and columns $sql = CREATE TABLE 'products' (

Re: [PHP] CheckBoxes and Arrays

2001-09-11 Thread Christopher William Wesley
On Tue, 11 Sep 2001, Ryan Stephens wrote: Im trying to output a list of options, each with a checkbox named ChkBox ... Name each checkbox ChkBox[] ... the brackets are the key. When the form is submitted, you'll have an array called $ChkBox that will contain the data only from the checked

[PHP] word wrap

2001-09-11 Thread Justin French
Hi, I'm having trouble with some email clients not wrapping text. So, what I'd like to do is create a wrap function which enables me to wrap a long text string at say 60 characters, by inserting a \n. Of course I don't want to wrap RIGHT ON 60 chars, I want to wrap at the space just before the

[PHP] Re: word wrap

2001-09-11 Thread Adam
http://php.net/manual/en/function.wordwrap.php -Adam www.wangallery.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Posts about the WTC Trajedy

2001-09-11 Thread Chip
I find the 'tone' of this thread to be very shameful! At a time like this we should be supporting one another in any way we can, not making off-handed remarks, finger-pointing or making facetious comments. I am on about a dozen differant lists and they all have threads going on this subject,

[PHP] PERL TO PHP

2001-09-11 Thread programmer
Can anybody help me convert this perl code to PHP This line in particular while( /hidden name=(.*?)/gs ) { but I have included more of the source below: Thanks in Advanace Randy undef $/; #print p$curlargsp; #print p$sysstringp; open(foo, $sysstring|) || die (Failed FO $!_); while(foo){ #

Re: [PHP] Posts about the WTC Trajedy

2001-09-11 Thread Richard Baskett
Amen, Ill second that Rick From: Chip [EMAIL PROTECTED] Date: Tue, 11 Sep 2001 20:27:41 -0700 To: [EMAIL PROTECTED] Subject: [PHP] Posts about the WTC Trajedy I find the 'tone' of this thread to be very shameful! At a time like this we should be supporting one another in any way we

[PHP] Re: Mailing list

2001-09-11 Thread Richard Lynch
You could examine the web-server logs... But you either have to assume people only read it once, or count IPs and ignore AOL/DHCP/Hotmail etc users whose IPs will change more or less at random. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me

[PHP] Re: mysql help

2001-09-11 Thread Richard Lynch
A create SQL statement is just an SQL statement. Send it the same way you would send Select You'll have to have the permissions set up right, so use mysql_error() until you figure out what's going on. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna

[PHP] Re: Getting a script to download files from an ftp server?

2001-09-11 Thread Richard Lynch
header(Content-type: application/x-octet-stream); You'll also need differing Content-disposition: headers for IE and Netscape. And, just for fun, you need Content-length: if you expect the pretty progress meter to work. For total fun, there's also a minor version of some browser where you need to

[PHP] Re: PHP module unloadable

2001-09-11 Thread Richard Lynch
I think uncompress may be in zlib, which you said not to use... -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm -

[PHP] Re: Ramesus HELP ! Fwd: [PHP] mail() ERROR - WHY, WHY, WHY

2001-09-11 Thread Richard Lynch
Did anybody disable the mail() function in PHP? What did you put in php.ini to call sendmail? Are there any error messages in your Apache logs? Re-posting with Rasmus' name is probably not particularly useful... -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL

[PHP] Re: Hierarchic menus using Javascript and PHP?

2001-09-11 Thread Richard Lynch
See my response to Girish' post. You can't have JavaScript talking to PHP in real-time for user-interaction. You either need to send your ENTIRE tree to JavaScript, or make the user choose on each page from a sub-menu... For that, you would just need to have JavaScript set the location to

[PHP] Re: check box help.

2001-09-11 Thread Richard Lynch
Add [] to the name if you expect multiple checkboxes of the same name... http://php.net/FAQ.php -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time:

[PHP] Re: Uploading Photos to MySQL

2001-09-11 Thread Richard Lynch
Rasmus' classic Photo Album is still online with source code. Google: Rasmus Lerdorf and Photo Album -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time:

[PHP] Re: Problem with session_destroy

2001-09-11 Thread Richard Lynch
The file isn't written out until the end of your script, and you're trying to kill it?... Since you haven't registered any variables nor set them, deleting the session doesn't seem like a big deal... What's your overall design goal here? -- WARNING [EMAIL PROTECTED] address is an endangered

[PHP] Re: Can' connect to ldap server

2001-09-11 Thread Richard Lynch
Check your Apache log for any errors... And, it's *possible* PHP was configured to log errors elsewhere as well... See php.ini, or write some intentionally broken code to be sure you get error messages to the browser. -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL

[PHP] Re: the proverbial mail() is not supported in this PHP build

2001-09-11 Thread Richard Lynch
It's entirely possible your ISP turned it off on purpose to foil spammers... You *may* be able to http://php.net/exec sendmail and do an end-run around that, if they were not smart enough to close off that access... -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL

[PHP] Re: php apache server problem

2001-09-11 Thread Richard Lynch
What do you mean by an overloading of the server?... It's possible that your configuration of MySQL number of clients that can connect is lower than the number of httpd children that can live. At some point, you'll have requests asking for MySQL connections, but MySQL won't hand out any more...

[PHP] Re: PHP4 in .html. HELP!

2001-09-11 Thread Richard Lynch
Try it without the . in .html -- Just html, no . -- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message -

[PHP] Re: Accessing Variable !!!

2001-09-11 Thread Richard Lynch
PHP lives on the server. JavaScript lives on the browser. Consider the sequencing of events: 1: Browser sends GET request 2: Apache begins processing request, decides to invoke PHP 3: PHP begins processing, starts sending out HTML (or other data) 4: Apache passes through PHP's HTML/data 5:

[PHP] Re: enumerations // collections

2001-09-11 Thread Richard Lynch
First of all, you're going to have an awfully slow site if you end up calling mysql_connect as often as it looks like you will. You really only want to call mysql_connect once per script... Collections in PHP are handled with arrays. http://php.net/array -- WARNING [EMAIL PROTECTED] address

[PHP] reading a pop3 without imap functions

2001-09-11 Thread Carry Ian
Hello, I want to read mails from a pop3 account. Our ISP doesn't support IMAP with PHP. Can anybody help me how to do it using php. Any help will be highly appreciated. Thanks in advance. Regards, Carry Carry Ian e-mail: [EMAIL PROTECTED]

Re: [PHP] CheckBoxes and Arrays

2001-09-11 Thread Don Read
On 12-Sep-2001 Christopher William Wesley wrote: On Tue, 11 Sep 2001, Ryan Stephens wrote: Im trying to output a list of options, each with a checkbox named ChkBox ... Name each checkbox ChkBox[] ... the brackets are the key. When the form is submitted, you'll have an array called

[PHP] terror

2001-09-11 Thread nafiseh saberi
in IRAn all people hear bad news about terror. and want to help. how are you,are you safe ??? - Best regards. Nafiseh Saberi Iran - Shiraz Try to always happy and hopefull. The smooth sea never made a skillful mariner. Love your

[PHP] Re: PHP module unloadable

2001-09-11 Thread Kevin Way
I think uncompress may be in zlib, which you said not to use... DOH! Yeah, that was the problem... I Embarassed, Kevin Way -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] terror

2001-09-11 Thread Richard Baskett
We, well I can't speak for everyone, but I appreciate your sentiments and I am sure many people do. Pray, pray for those survivors, pray for those who are possibly still trapped in/under the world trade center, pray for the relatives of victims, spread the word of peace. Like I heard earlier

[PHP] Changing perl to PHP

2001-09-11 Thread Richard Kurth
Could somebody tell me how to convert this little bet of code to PHP. The rest of the code for this was easy to do but I dont know what to do with this. Can I call LWP from php and if yes how? # read the post from PayPal system and add 'cmd' read (STDIN, $query, $ENV{'CONTENT_LENGTH'}); $query

<    1   2