Real Estate Forums

Coding HTML, ASP, PHP, JAVA MYSQL and more. All coding questions should be asked here.

Reply
 
Thread Tools Display Modes
Old 05-28-2007, 09:11 AM
iorgobe13 iorgobe13 is offline
banned
 
Join Date: Mar 2007
Posts: 10
iorgobe13 is on a distinguished road
Default Php Form Script

Hello guys,

I need help with something. I want to put a php form on my bussines website, but I don`t know php. Can you guys please recommend me a php script or some free form builder?
Thanks
Reply With Quote
Old 05-29-2007, 08:18 AM
BrandonSternfield's Avatar
BrandonSternfield BrandonSternfield is offline
Uber Real Estate Webmaster
 
Join Date: Feb 2007
Location: Fort Lauderdale, Florida
Posts: 1,502
BrandonSternfield is on a distinguished road
Send a message via AIM to BrandonSternfield
Default Re: Php Form Script

Before you even get started with php, you need to know a few things:

Does your hosting company have php installed (some companies require a bigger package then basic to get php).?
If you do have php installed, is mail() enabled?
Do you want secure (SSL) or normal form mail?
__________________
If you're not remembered, you never existed.
Reply With Quote
Old 05-29-2007, 08:41 AM
RESteve's Avatar
RESteve RESteve is offline
Moderator
 
Join Date: Sep 2005
Location: Houston, TX
Posts: 1,473
RESteve is on a distinguished road
Default Re: Php Form Script

I'm glad this topic came up; I'm interested in getting this implemented on my site as well.
__________________
Steve Castaneda, Realtor
Keller Williams Realty
The MyHomeHouston Team

Specializing in Houston Real Estate. Feel free to visit my Houston Real Estate Blog or read about Real Estate Technology for agents.
Reply With Quote
Old 05-29-2007, 08:44 AM
BrandonSternfield's Avatar
BrandonSternfield BrandonSternfield is offline
Uber Real Estate Webmaster
 
Join Date: Feb 2007
Location: Fort Lauderdale, Florida
Posts: 1,502
BrandonSternfield is on a distinguished road
Send a message via AIM to BrandonSternfield
Default Re: Php Form Script

Just an fyi, if you do have php installed, and mail() is enabled, it's relatively simple pretty much anything you find on google for 'php mailform' will work

Sadly... a large portion of the internet hosting companies disable mail() for security reasons.
__________________
If you're not remembered, you never existed.
Reply With Quote
Old 05-29-2007, 08:50 AM
RESteve's Avatar
RESteve RESteve is offline
Moderator
 
Join Date: Sep 2005
Location: Houston, TX
Posts: 1,473
RESteve is on a distinguished road
Default Re: Php Form Script

Quote:
Originally Posted by BrandonSternfield View Post
Just an fyi, if you do have php installed, and mail() is enabled, it's relatively simple pretty much anything you find on google for 'php mailform' will work

Sadly... a large portion of the internet hosting companies disable mail() for security reasons.
Ah, I see. For the traditional form, I used a handler back in the day called mailmyform.com. It was reliable so in case anyone runs into this and is looking for a alternative to the PHP submit, they can use that site to submit forms.

I get confused on the PHP form vs. HTML form, but I think it has to do with how the form is submitted, correct?
__________________
Steve Castaneda, Realtor
Keller Williams Realty
The MyHomeHouston Team

Specializing in Houston Real Estate. Feel free to visit my Houston Real Estate Blog or read about Real Estate Technology for agents.
Reply With Quote
Old 05-29-2007, 09:26 AM
mkrotchie's Avatar
mkrotchie mkrotchie is offline
Real Estate WebMaster
 
Join Date: Mar 2007
Location: Tucson, AZ
Posts: 173
mkrotchie is on a distinguished road
Send a message via AIM to mkrotchie Send a message via Yahoo to mkrotchie
Default Re: Php Form Script

Quote:
Originally Posted by RESteve View Post
Ah, I see. For the traditional form, I used a handler back in the day called mailmyform.com. It was reliable so in case anyone runs into this and is looking for a alternative to the PHP submit, they can use that site to submit forms.

I get confused on the PHP form vs. HTML form, but I think it has to do with how the form is submitted, correct?
Steve, the HTML form is the same but the 'action' portion of it is the .php script you call to execute and mail the results to you. So the HTML would read something like

Code:
<form action="email_script.php" method="post" name="contact_form">
...
where "email_script.php" would call the PHP mail() function that Brandon mentioned. If you would like I could send you the basic contact form I currently use on my site, from that you could probably implement whatever you wanted.
__________________
Michael Krotchie - REALTOR® - Coldwell Banker Residential Brokerage, NRT LLC
6970 N. Oracle Road, Suite 100
Tucson, AZ 85704
520.404.4996 -- Mobile
520.544.4545 -- Office

Tucson Real Estate | Tucson Real Estate Blog
Reply With Quote
Old 05-29-2007, 09:29 AM
RESteve's Avatar
RESteve RESteve is offline
Moderator
 
Join Date: Sep 2005
Location: Houston, TX
Posts: 1,473
RESteve is on a distinguished road
Default Re: Php Form Script

Quote:
Originally Posted by mkrotchie View Post
Steve, the HTML form is the same but the 'action' portion of it is the .php script you call to execute and mail the results to you. So the HTML would read something like

Code:
<form action="email_script.php" method="post" name="contact_form">
...
where "email_script.php" would call the PHP mail() function that Brandon mentioned. If you would like I could send you the basic contact form I currently use on my site, from that you could probably implement whatever you wanted.
That would be great; go ahead send it to me. Thanks a bunch for the explanation as well. It clears up my confusion.
__________________
Steve Castaneda, Realtor
Keller Williams Realty
The MyHomeHouston Team

Specializing in Houston Real Estate. Feel free to visit my Houston Real Estate Blog or read about Real Estate Technology for agents.
Reply With Quote
Old 05-29-2007, 09:31 AM
BrandonSternfield's Avatar
BrandonSternfield BrandonSternfield is offline
Uber Real Estate Webmaster
 
Join Date: Feb 2007
Location: Fort Lauderdale, Florida
Posts: 1,502
BrandonSternfield is on a distinguished road
Send a message via AIM to BrandonSternfield
Default Re: Php Form Script

Aye, they all work the same, the only difference is the action in the form (and sometimes the hidden fields, like subject, etc).
__________________
If you're not remembered, you never existed.
Reply With Quote
Old 05-29-2007, 10:04 PM
brandonre's Avatar
brandonre brandonre is offline
Uber Real Estate Webmaster
 
Join Date: Dec 2006
Location: Brandon, Florida
Posts: 594
brandonre is on a distinguished road
Default Re: Php Form Script

I recently installed a php form a few months back previously had formail.cgi
I never had a problem with the cgi but now the new php script I am starting to get spam , someone mentioned a secure php formail script, can someone tell me where to find it?
__________________
Brandon Florida Real Estate
Do Follow, Comment Luv Tampa Real Estate Blog and Top Commentator enabled
Tampa MLS
Reply With Quote
Old 06-04-2007, 01:30 PM
iorgobe13 iorgobe13 is offline
banned
 
Join Date: Mar 2007
Posts: 10
iorgobe13 is on a distinguished road
Default Re: Php Form Script

Thank you for suggestions ( daca a raspuns cineva ). So far I found freedback and this free url removed php form builder which unlike freedback does not show any advertising in the free plan! ;-)

Last edited by REW Reed; 07-03-2007 at 03:32 PM.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



For our members

Main Sections

IDX Coverage Areas

Spiders Welcome

All times are GMT -7. The time now is 05:08 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.