Re: [PHP] Contact form....

2010-04-26 Thread Brandon Rampersad
Ashley thank you for catching that, i caught it but then i saw your reply further down. On Mon, Apr 26, 2010 at 5:11 PM, Watson Blair wrote: > ya, i'm working on a walk around now, i just wanted to get the function up > and running in it's most basic before i started supping it up, as it were. >

Re: [PHP] Contact form....

2010-04-26 Thread Watson Blair
ya, i'm working on a walk around now, i just wanted to get the function up and running in it's most basic before i started supping it up, as it were. i was thinking about using a switch and assigning each of my radio buttons a value from 1 to 3... On Mon, Apr 26, 2010 at 4:35 PM, Benjamin Hawkes-L

Re: [PHP] Contact form....

2010-04-26 Thread Ashley Sheridan
On Mon, 2010-04-26 at 15:46 -0400, Watson Blair wrote: > I knew i was missing something although it still doesn't work... i'm > still getting : > > "; $send_contact=mail($to,$subject,$message, $header); if($send_contact){ > echo "Thank you for Contacting Us!"; } else { echo "An error occured

Re: [PHP] Contact form....

2010-04-26 Thread Watson Blair
I knew i was missing something although it still doesn't work... i'm still getting : "; $send_contact=mail($to,$subject,$message, $header); if($send_contact){ echo "Thank you for Contacting Us!"; } else { echo "An error occured while sending your message, review your information and please try

Re: [PHP] Contact form....

2010-04-26 Thread Dan Joseph
Looks like you might have errors turned off. I see: $subject =$_POST"subject"; Which should be: $subject =$_POST["subject"]; $_POST is an array, and that's how you access those elements. check to see if errors are on, if not, you'll see errors in the log files. -- -Dan Joseph www.canishos

Re: [PHP] Contact form....

2010-04-26 Thread Adam Richardson
On Mon, Apr 26, 2010 at 3:16 PM, Watson Blair wrote: > Hey guys, so ive coded a sucessfull contact form before, but for some > reason > this bit of code is giving me the run-arroundl > > so my HTML end is: > > > > >Send E-mail to: > >G

[PHP] Contact form....

2010-04-26 Thread Watson Blair
Hey guys, so ive coded a sucessfull contact form before, but for some reason this bit of code is giving me the run-arroundl so my HTML end is: Send E-mail to: General Information Founder and President: Professor

[PHP] CONTACT ...

2007-02-01 Thread Man-wai Chang
Alberto Ferreira wrote: > Teste > -- .~. Might, Courage, Vision, SINCERITY. http://www.linux-sxs.org / v \ Simplicity is Beauty! May the Force and Farce be with you! /( _ )\ (Ubuntu 6.10) Linux 2.6.19.2 ^ ^ 19:27:01 up 20 days 22:39 0 users load average: 1.07 1.02 1.00 news://news.3

[PHP] Contact List Grabber

2006-03-05 Thread Ahmed Abdel-Aliem
Hi i would like to make a script to import contact list from msn, yahoo and gmail instant messenger. any ideas or tutorial on how to do that. any help will be appreciated thanks in advance -- Ahmed Abdel-Aliem Web Developer www.SafariStudio.net +20101108551 registered Linux user number 382789 --

Re: [PHP] contact list re-ordering (php/mySQL CMS design)

2002-09-08 Thread timo stamm
Hi speedfreak, uh, clients. Can't they just send the checks an be content? :-) I have yet not done a user-sorted list in PHP/MySQL (I am using PHP since a week, now :-). But I think the following database setup should allow you to do it: id content above below 1 lala

Re: [PHP] contact list re-ordering (php/mySQL CMS design)

2002-09-07 Thread @ Edwin
I'm not sure if what you mean is something like this: Say, you have a table with 2 columns (1) "id" and (2) "contact". And your table is populated in this way: id contact 1 a 2 b 3 c 4 d 5 e And, let's say that your "id" is auto_incremented. Also, the contacts are shown ORD

[PHP] contact list re-ordering (php/mySQL CMS design)

2002-09-07 Thread speedfreak
Dear guru's, Hit a problem while developing a CMS with php/mySQL. Part of this is a contact list and this works ok (add/edit/delete with insert/update/delete queries). Now the client has requested a new feature: ability to change the order in which the contacts are being presented in the public p