RE: [PHP] Question about the mail() php function

2004-04-24 Thread Julien Wadin
you've to go in the php.ini and give a smtp server -Message d'origine- De : Shawn Inder [mailto:[EMAIL PROTECTED] Envoyé : samedi 24 avril 2004 6:03 À : [EMAIL PROTECTED] Objet : [PHP] Question about the mail() php function Hello, I was browsing your site and came across the mail() PHP

RE: [PHP] PHP Web Hosting

2004-04-19 Thread Julien Wadin
Of course You just have to change the DNS of your domain Your hosteur MUST let you change -Message d'origine- De : Martin, Stanley G [Contractor for Sprint] [mailto:[EMAIL PROTECTED] Envoye : lundi 19 avril 2004 21:35 A : Richard Davey; [EMAIL PROTECTED] Objet : RE: [PHP] PHP Web Hosting

RE: [PHP] Variables??

2004-02-15 Thread Julien Wadin
give the corresponding source code are you using POST or GET ? What about REGISTER_GLOBALS ??? PS : NO MAILS IN HTML ON THE LIST, PLEASE -Message d'origine- De : Alessandro Rodiani [mailto:[EMAIL PROTECTED] Envoyé : dimanche 15 février 2004 21:29 À : [EMAIL PROTECTED]; [EMAIL PROTECTED]

RE: [PHP] detecting flash in php

2004-01-09 Thread Julien Wadin
php is server side try in javascript -Message d'origine- De : Louie Miranda [mailto:[EMAIL PROTECTED] Envoyé : vendredi 9 janvier 2004 6:12 À : [EMAIL PROTECTED] Objet : [PHP] detecting flash in php is there anyway of detecting flash? in php -- - Louie Miranda http://www.axishift.com

RE: [PHP] md5() and string-length?

2004-01-09 Thread Julien Wadin
No limit for the input string -Message d'origine- De : Michael Müller [mailto:[EMAIL PROTECTED] Envoyé : vendredi 9 janvier 2004 18:29 À : [EMAIL PROTECTED] Objet : Re: [PHP] md5() and string-length? mhm, I think there was a missunderstanding ;) I want to know, how long the input-string

RE: [PHP] mail function error - win32

2003-11-01 Thread Julien Wadin
When you use the mail function, you must give the first argument. The 'to' is not in the headers Try this, it should work -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : samedi 1 novembre 2003 22:11 À : [EMAIL PROTECTED] Objet : [PHP] mail function error -

RE: [PHP] sound

2003-05-30 Thread Julien Wadin
Php is on the server, not on the local client You can make it with Flash -Message d'origine- De : Bobby [mailto:[EMAIL PROTECTED] Envoyé : jeudi 29 mai 2003 21:39 À : [EMAIL PROTECTED] Objet : [PHP] sound Does anybody know of a way under php to add a background sound to a webpage...i

RE: [PHP] Question

2003-03-30 Thread Julien Wadin
just do that : to have Banana : $a = ereg_replace(-,,$list[0]); to have Ba na na $b = ereg_replace(-, ,$list[0]); Bye __ WADIN JULIEN URL : www.campinfm.be.tf -Message d'origine- De : Marius [mailto:[EMAIL PROTECTED]

RE: [PHP] Checking for a Valid Email String.

2003-03-13 Thread Julien Wadin
Here's a script I've made The script checks if the mail looks like a valid one ? if (checkmail($mail)) { print(Adresse correcte); } else { print(Adresse invalide); } function checkmail($mail){ $mail2 = trim($mail); $lg=strlen($mail2); $pos1=strrpos($mail2,.);