Re: [PHP] Is mail() broken in 4.3.0 when it comes to BCC?

2003-02-10 Thread Awlad Hussain
>From the PHP manual, hope this will help. /* To send HTML mail, you can set the Content-type header. */ $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; /* additional headers */ $headers .= "From: Birthday Reminder <[EMAIL PROTECTED]>\r\n"; $he

Re: [PHP] Re: File not rewritable - why? Help needed.

2003-02-12 Thread Awlad Hussain
try CHMOD 777 - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 12, 2003 9:22 AM Subject: [PHP] Re: File not rewritable - why? Help needed. > thank you for the reply > > > Chmod was just a try from my side to get it work. > > I tried CHMOD 0

Re: [PHP] ankord php text editor

2003-02-18 Thread Awlad Hussain
Tell us what the url of Ankord is. I use HtmlKit (http://www.htmlkit.com) its the best FREE editor available out there. :) -awlad - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: "Php-General@Lists. Php. Net" <[EMAIL PROTECTED]> Sent: Tuesday, February 18, 2003 3:46 P

Re: [PHP] online tutorial

2003-02-19 Thread Awlad Hussain
http://www.devshed.com http://www.phpfreaks.com Search Google -> "PHP Tutorials" - Original Message - From: "DIKSHA NEEL" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 19, 2003 11:50 AM Subject: [PHP] online tutorial > dear all, > > i am a final year engineer

Re: [PHP] php ecommers site

2003-02-20 Thread Awlad Hussain
try this site http://www.oscommerce.com/ you might have to add additional functions to customize it. - Original Message - From: "Chris Knipe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 20, 2003 2:06 AM Subject: [PHP] php ecommers site > Lo all, > > Is there any

Re: [PHP] List folder contents with links?

2003-02-20 Thread Awlad Hussain
Yes it is, read the directory section in PHP Manual. - Original Message - From: "MIKE YRABEDRA" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Thursday, February 20, 2003 4:33 PM Subject: [PHP] List folder contents with links? > > > Is it possible to display the contents

Re: [PHP] selection in form-field

2003-02-21 Thread Awlad Hussain
PHP is a server side language, you need a DHTML web based editor.. try this exellent FREE editor http://www.interactivetools.com/products/htmlarea/ - Original Message - From: "Michiel van Heusden" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 9:46 AM Subje

Re: [PHP] Re: smarty vs. patTemplate vs. inclu

2003-02-21 Thread Awlad Hussain
David, Is there any point using smarty on s small site? eg: website consists of 6/8 pages? does it matter on the size of the site? -awlad - Original Message - From: "David Eisenhart" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 11:31 AM Subject: [PHP] Re: s

Re: [PHP] Re: smarty vs. patTemplate vs. inclu

2003-02-21 Thread Awlad Hussain
Thanks guys I'll have ago with smarty, and let you guys know what I think :) Have a nice day -awlad - Original Message - From: "rush" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 2:18 PM Subject: Re: [PHP] Re: smarty vs. patTe

Re: [PHP] small ads system

2003-02-21 Thread Awlad Hussain
go to http://www.hotscripts.com and do a search on classifieds under PHP codes -awlad - Original Message - From: "Nenad Djordjevic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 2:35 PM Subject: [PHP] small ads system > Hello, > > I need web application (PH

Re: [PHP] cookie problemes (solved with javascript)

2003-02-25 Thread Awlad Hussain
Thanks Kale, I'll have a go with your code - Original Message - From: "kale" <[EMAIL PROTECTED]> To: "Php. Net" <[EMAIL PROTECTED]> Cc: "'Awlad Hussain'" <[EMAIL PROTECTED]> Sent: Tuesday, February 25, 2003 9:29 AM Subject: R

Re: [PHP] Capitalising Personal Names

2003-02-28 Thread Awlad Hussain
Have a javascript alert like "Are you 100% sure you haven't typed your name wrong :)" Other option is to create name dictionary then compare.. - Original Message - From: "Joshua Moore-Oliva" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 28, 2003 11:35 AM Subject: Re:

[PHP] Automatic Table Creation

2003-03-03 Thread Awlad Hussain
I have a mysql table containing about 100 record, alphabetically ordered. How would i display them in browser in a 3 columns, doesn't matter how long the rows is as the number of records will grow in the database table. the records should be in alphabetically order, for example: aaa bbba

Re: [PHP] Automatic Table Creation

2003-03-03 Thread Awlad Hussain
Thanks Jonathan, I'll have a go with your codes. Thanks very much awlad - Original Message - From: "Jonathan Pitcher" <[EMAIL PROTECTED]> To: "Awlad Hussain" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, March 03, 2003 4:17 PM

[PHP] creating class

2003-03-05 Thread Awlad Hussain
I am very new to class, trying out this class, but it doesn't seem to display anything? what i am donig wrong? midgard["host"]; } ?> i called this class by $new_midgard = site_init; it does not seem to print anything.. why? anyone any idea? awlad

[PHP] assign gobal values in class?

2003-03-05 Thread Awlad Hussain
can you assign global value in a class like: class test{ global $arr; } anyone?

Re: [PHP] convert .asp page .php

2003-03-05 Thread Awlad Hussain
http://www.asp2php.com/ - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 1:42 AM Subject: [PHP] convert .asp page .php > Hi all, > > I joined your list hoping to find-out how to convert a .asp page to .php > > I do realize that I am o

Re: [PHP] JAVASCRIPT

2003-03-07 Thread Awlad Hussain
i think you're not calling the the javascript validation function when you're submiting the form you need to call the function like this: try this code below, hope this will help -awlad