View Full Version : Form Genarators
msh498 08-15-2005, 06:21 AM hi there
I Have a hosting company and i need a form that will send me the detilas of there website directly after payment
I have tried php form genorator in fantasico but i have had no luck if any one knows of what i can do pleas leave a message in this topic
Thanks
Doctor_Web 08-15-2005, 06:31 AM Hi,
Dynaform is a excellent solution for you:
http://www.webligo.com/products_dynaform.php
:wht:
msh498 08-15-2005, 06:33 AM Thank you doctor web realy apreciated but there is 1 question .
does the form get sent to your email address?
Doctor_Web 08-15-2005, 06:50 AM Of course, you can configure this form with your email, add another fields and much more...
whoiscartpro 08-15-2005, 04:28 PM Originally posted by msh498
hi there
I Have a hosting company and i need a form that will send me the detilas of there website directly after payment
I have tried php form genorator in fantasico but i have had no luck if any one knows of what i can do pleas leave a message in this topic
Thanks
You can use the php code at below:
<HEAD>
<TITLE>Your Website Name</TITLE>
</HEAD>
<BODY>
<?php
if ($_POST['submit'] == TRUE) {
$receiverMail = "you@yourdomainname.com";
$name = stripslashes(strip_tags($_POST['name']));
$email = stripslashes(strip_tags($_POST['email']));
$subject = stripslashes(strip_tags($_POST['subject']));
$msg = stripslashes(strip_tags($_POST['msg']));
$ip = $_SERVER['REMOTE_ADDR'];
$msgformat = "From: $name ($ip)\nE-mail: $email\n\n$msg\n";
if(empty($name) || empty($email) || empty($domain) || empty($subject) || empty($msg)) {
echo "<b>ERROR!</b><br>Missing information.<br><br>";
}
elseif(!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)) {
echo "<b>ERROR!</b><br>E-mail you entered is wrong.<br><br>";
}
elseif(mail($receiverMail, $subject, $msgformat, "From: $name <$email>")) {
echo "<b>Thank You!</b><br>Your message have sent. Thank you for contacting us.<br><br>"; }
else {
echo "<b>ERROR!</b>Please back and try again.<br><br>";
}
}
else { ?>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=6 width=85%>
<form method="post" action="">
<TR>
<TD VALIGN=top align=right><B><label for="name">Name:</label></B></TD><TD><input id="name" name="name" type="text" size="30" /></TD>
</TR>
<TR>
<TD VALIGN=top align=right><B><label for="email">E-mail:</label></B></TD><TD><input id="email" name="email" type="text" size="30" /></TD>
</TR>
<TR>
<TD VALIGN=top align=right><B><label for="subject">Subject:</label></B></TD><TD><input id="subject" name="subject" type="text" size="30" /></TD>
</TR>
<TR>
<TD align=right valign=top><B><label for="message">Message:</label></B></TD>
<TD><textarea id="message" name="msg" rows="6" style="z-index:2; width: 350;"></textarea></TD>
</TR>
<TR><TD></TD><TD><label for="submit"></label><INPUT id="submit" TYPE=submit name="submit" value="Submit"></TD></TR>
</TABLE>
</form>
<?php } ?>
</BODY>
</HTML>
BF-Gary 08-15-2005, 04:36 PM There are lots of premade scripts out there to do this for you. Like whoiscartpro.com is only $13.
For the time your spending to get it to work you I bet that a solution like that would be faster and less expensive.
msh498 08-15-2005, 04:49 PM :wavey: To mh-gary and whoiscartpro
whoiscartpro looks good
does it also sort out payment?
:ukflag:
BF-Gary 08-15-2005, 05:01 PM According to there site:
Built in support for 2checkout.com, Paypal.com, Stormpay.com, Moneybookers.com, Nochex.com and manual processing
msh498 08-15-2005, 05:25 PM ok thanks for looking that up for me
msh498 08-16-2005, 11:14 AM Does any people know more plans?????? :wavey:
msh498 08-16-2005, 05:41 PM these sound great but i was thinking possibly of a free form maker as i have no customers yet .i also have no php experience
BF-Gary 08-16-2005, 09:46 PM I am sad to hear that your business improvement to accept payments is less then $13. Maybe you should reconsidering starting a hosting company?
wbpro 08-16-2005, 10:45 PM msh498,
The billing system should be one of the most important things on your company. You should sit down and think what kind of hosting company you want to be and how professional.
You really need a good help desk and automated billing system. If your server is using a control panel like cPanel there are great billing systems like lpanel that will really make your life easier.
If you really don't have the budget for that i think you are in the wrong business. Running a hosting company is not just turning a computer on with an internet connection and installing apache.
I recommend you search a lot about how to start a successful company before you actually get into it so you won't be part of the ones that are damaging the hosting industry reputation.
msh498 08-16-2005, 11:02 PM i am still looking into whoiscartpro
i dont mind paying 13 dallars
writespeak 08-17-2005, 01:45 AM Moved to Running a Web Hosting Business.
Lois
Doctor_Web 08-17-2005, 05:27 AM Well, maintain mental peace:
Firts Msh you can review this URL http://www.hotscripts.com/PHP/Scripts_and_Programs/Web_Hosting_Tools/index.html
Another for Order forms:
http://www.phpcube.com/product_info.php/products_id/33
http://www.orderplus.net/demo.php
http://scripts.franciscocharrua.com/web-hosting-shopping-cart.php
Another for Support solution:
http://www.bestpractical.com/rt/
http://www.cerberusweb.com/free_version.php
http://www.support-logic.com/
:wht:
msh498 08-17-2005, 06:41 AM http://www.ihostdev.com/ipanel.html looks ok does any one know more about this service
|