Jul 26, 2008

Help With Html Code - Feedback Form

Free Web Hosting, No Ads > General > Hosted Members Area
Pages: 1, 2

free web hosting

Help With Html Code - Feedback Form

Jesse
I have this HTML Code:

QUOTE
  <br><br><font class="content">All comments and suggestions about this web site are very welcome and a valuable source of information for us. Thanks!</font>
    <FORM METHOD="post" ACTION="modules.php?name=Feedback">
    <P><strong>Your Name:</strong><br>
    <INPUT type="text" NAME="sender_name" VALUE="" SIZE=30></p>
    <P><strong>Your Email:</strong><br>
    <INPUT type="text" NAME="sender_email" VALUE="" SIZE=30></p>
    <P><strong>Message:</strong><br>
    <TEXTAREA NAME="message" COLS=30 ROWS=5 WRAP=virtual></TEXTAREA></p>
    <INPUT type="hidden" name="opi" value="ds">
    <P><INPUT TYPE="submit" NAME="submit" VALUE="Send"></p>
    </FORM></center>


However, a problem that I have is the fact that I dont know how to set up the code to send it to an Email address. I am not that good with HTML Coding and would be grateful for assistance in setting this up. Thank you.

 

 

 


Reply

DreamCore
I dont think that it can be cahnged via HTML, you shuld have to edit it in your php source code tought. wink.gif

Reply

calkid
QUOTE(Jesse @ Nov 23 2005, 03:53 PM)
I have this HTML Code:
However, a problem that I have is the fact that I dont know how to set up the code to send it to an Email address. I am not that good with HTML Coding and would be grateful for assistance in setting this up. Thank you.
*



you would also have to find a script that translates the input fields in to an easy to read format when you get it sent to your inbox.

i believe trap 17 has a free form handler script with their free hosting (not sure).

i am not an expert in forms or html but i do know that if you don't format the results, what shows up in your inbox will be a complete mess.

i know this may not have helped, but you were asking about how to get the results to your inbox, but you also need to format the results. i believe bravenet and other websites are good for doing this for you for free(but unprofessional with the ads they put up after someone fills out the forum(but they still work great)

 

 

 


Reply

DreamCore
QUOTE(calkid @ Nov 23 2005, 11:26 PM)
you would also have to find a script that translates the input fields in to an easy to read format when you get it sent to your inbox.

i believe trap 17 has a free form handler script with their free hosting (not sure).

i am not an expert in forms or html but i do know that if you don't format the results, what shows up in your inbox will be a complete mess.

i know this may not have helped, but you were asking about how to get the results to your inbox, but you also need to format the results. i believe bravenet and other websites are good for doing this for you for free(but unprofessional with the ads they put up after someone fills out the forum(but they still work great)
*


Yea the have free form handler in CGI and I agree it would still be great.

Reply

Jesse
I dont have a PHP Source Code. I got a template of a website and that is what I am using. However there is no PHP information in there with any of the files.

Is there a way that I can keep this template and add in a PHP code or something like that. I have not much idea of HTML and absolutley NO knowledge of ANY PHP at all.

It is something that I am wanting to learn, just dont have the time to learn it and get my site ready for its Grand Opening.

Reply

tuddy
1. Change your code to the following, only change i have made is .php file name and handler. Instead of Modules.php?name=feedback i have put process.php.

CODE
<br><br><font class="content">All comments and suggestions about this web site are very welcome and a valuable source of information for us. Thanks!</font>
   <FORM METHOD="post" ACTION="process.php">
   <P><strong>Your Name:</strong><br>
   <INPUT type="text" NAME="sender_name" VALUE="" SIZE=30></p>
   <P><strong>Your Email:</strong><br>
   <INPUT type="text" NAME="sender_email" VALUE="" SIZE=30></p>
   <P><strong>Message:</strong><br>
   <TEXTAREA NAME="message" COLS=30 ROWS=5 WRAP=virtual></TEXTAREA></p>
   <INPUT type="hidden" name="opi" value="ds">
   <P><INPUT TYPE="submit" NAME="submit" VALUE="Send"></p>
   </FORM></center>


2. Load a new page and enter the following code.
CODE
<?php
// The error message if there are one or more fields not filled in
$error = "There are some fields not filled in, <a href="javascript:history.go(-1)">Click here to go back</a>";

// Let's check if all fields are filled in!
if($sender_name == "" || $sender_email == "" || $message == ""){
// Lets echo that error!;)
 echo $error;
}


/*
 if after all everything is filled in correct, lets start doing the mailscript...
 Edit the variable's below to make them fit your needs
*/
else{
$yourwebsite = "http://something.com"; // Your website
$recipientname = "Yourname"; // Whats your name ?!
$subject="E-mail from yoursite";  // The subject of the mail thats being sended
$recipient="you@something.com"; // the recipient

/*
 The headers for the e-mail, no need to change it unless you know what you're doing
*/
$header = "From: $nickname <$email>rn";
$header .= "MIME-Version: 1.0rn";
$header .= "Content-Type: text/html; charset=iso-8859-1rn";
$header .= "X-Priority: 3rn";
$header .= "X-MSMail-Priority: Normalrn";
$header .= "X-Mailer: PHP / ".phpversion()."rn";

/*
 You can change the text below to whatever you wish to have
 for the way the mail is gonne be outputted, you can use HTML!
*/
$content= "
Dear $recipientname, $sender_name has sended you an e-mail from $yourwebsite.<br />
<b>Message:</b>
$message
<hr noshade="true" size="1" color="#000000" />
You can contact $sender_name back at $sender_email.";

// Lets send the e-mail by using the mail() function, no need to change below...this can be edited above!
mail($recipient, $content, $header);

// Message the user will see if the e-mail is succesfully sended :)
echo "Thanks! Your comments has been sended succesfull $sender_name.";
}
?>


3. Name this file 'process.php', without qoutation marks.
4. Upload to a directory.

You can insert the code into any HTML document between the <body> tages. This allows you to make the page look & feel like the rest of your site. REMEMBER TO CHANGE THINGS IN THE CODE!!

This is how it will work, visiters will fillin the form, then click submit. The browser will then load the process.php page and run the script, the script will check to make sure all fields are filled out. Then it will send the email to your email address that you change above!

Code above in step 2 edited from HERE


Reply

Jesse
Ok I have done everything that you said there and uploaded it all to my website. Now when I try to send in a Feedback Form I get this message:


QUOTE
Parse error: parse error, unexpected T_STRING in /home/zcnet/public_html/process.php on line 3


Any idea on how I can fix this? This is what the code looks like in my: process.php file:

QUOTE
<?php
// The error message if there are one or more fields not filled in
$error = "There are some fields not filled in, <a

href="javascript:www.zaccynetwork.com/contact.html">Click here to go back</a>";

// Let's check if all fields are filled in!
if($sender_name == "" || $sender_email == "" || $message == ""){
// Lets echo that error!;)
echo $error;
}

/*
if after all everything is filled in correct, lets start doing the mailscript...
Edit the variable's below to make them fit your needs
*/
else{
$yourwebsite = "http://www.zaccynetwork.com"; // Your website
$recipientname = "ZN Support"; // Whats your name ?!
$subject="Support Form";  // The subject of the mail thats being sended
$recipient="support@zaccynetwork.com"; // the recipient

/*
The headers for the e-mail, no need to change it unless you know what you're doing
*/
$header = "From: $nickname <$email>rn";
$header .= "MIME-Version: 1.0rn";
$header .= "Content-Type: text/html; charset=iso-8859-1rn";
$header .= "X-Priority: 3rn";
$header .= "X-MSMail-Priority: Normalrn";
$header .= "X-Mailer: PHP / ".phpversion()."rn";

/*
You can change the text below to whatever you wish to have
for the way the mail is gonne be outputted, you can use HTML!
*/
$content= "
Dear $recipientname, $sender_name has sended you an e-mail from $yourwebsite.<br />
<b>Message:</b>
$message
<hr noshade="true" size="1" color="#000000" />
You can contact $sender_name back at $sender_email.";

// Lets send the e-mail by using the mail() function, no need to change below...this can be

edited above!
mail($recipient, $content, $header);

// Message the user will see if the e-mail is succesfully sended smile.gif
echo "Thanks! Your comments has been sended succesfull $sender_name.";
}
?>

Reply

electriic ink
Try this code fix:

CODE
<?php
// The error message if there are one or more fields not filled in
$error = "There are some fields not filled in, <a

href=\"http://www.zaccynetwork.com/contact.html\">Click here to go back</a>";

// Let's check if all fields are filled in!
if($sender_name == "" || $sender_email == "" || $message == ""){
// Lets echo that error!;)
echo $error;
}

/*
if after all everything is filled in correct, lets start doing the mailscript...
Edit the variable's below to make them fit your needs
*/
else{
$yourwebsite = "http://www.zaccynetwork.com"; // Your website
$recipientname = "ZN Support"; // Whats your name ?!
$subject="Support Form";  // The subject of the mail thats being sended
$recipient="support@zaccynetwork.com"; // the recipient

/*
The headers for the e-mail, no need to change it unless you know what you're doing
*/
$header = "From: $nickname <$email>\r\n";
$header .= "MIME-Version: 1.0\r\n";
$header .= "Content-Type: text/html; charset=iso-8859-1\r\n";
$header .= "X-Priority: 3\r\n";
$header .= "X-MSMail-Priority: Normal\r\n";
$header .= "X-Mailer: PHP / ".phpversion()."\r\n";

/*
You can change the text below to whatever you wish to have
for the way the mail is gonne be outputted, you can use HTML!
*/
$content= "
Dear " . $recipientname . "," . $sender_name . " has sended you an e-mail from " . $yourwebsite . ".<br />
<b>Message:</b>
" . $message . "
<hr noshade=\"true\" size=\"1\" color=\"#000000\" />
You can contact " . $sender_name . " back at " . $sender_email . ".";

// Lets send the e-mail by using the mail() function, no need to change below...this
// can be edited above!

mail($recipient, $subject, $content, $header);

// Message the user will see if the e-mail is succesfully sended :)

echo "Thanks! Your comments has been sended succesfully, " . $sender_name . ".";
}
?>


Okay should be fixed now smile.gif The main problem was that backslashes weren't used.

Reply

tuddy
Nope, your problem is where you have replaceed the small Java part at the top to send users back. Try the following:

CODE
<?php
// The error message if there are one or more fields not filled in
$error = "There are some fields not filled in, <a href="javascript:history.go(-1)">Click here to go back</a>";

// Let's check if all fields are filled in!
if($sender_name == "" || $sender_email == "" || $message == ""){
// Lets echo that error!;)
echo $error;
}

/*
if after all everything is filled in correct, lets start doing the mailscript...
Edit the variable's below to make them fit your needs
*/
else{
$yourwebsite = "http://www.zaccynetwork.com"; // Your website
$recipientname = "ZN Support"; // Whats your name ?!
$subject="Support Form";  // The subject of the mail thats being sended
$recipient="support@zaccynetwork.com"; // the recipient

/*
The headers for the e-mail, no need to change it unless you know what you're doing
*/
$header = "From: $nickname <$email>rn";
$header .= "MIME-Version: 1.0rn";
$header .= "Content-Type: text/html; charset=iso-8859-1rn";
$header .= "X-Priority: 3rn";
$header .= "X-MSMail-Priority: Normalrn";
$header .= "X-Mailer: PHP / ".phpversion()."rn";

/*
You can change the text below to whatever you wish to have
for the way the mail is gonne be outputted, you can use HTML!
*/
$content= "
Dear $recipientname, $sender_name has sended you an e-mail from $yourwebsite.<br />
<b>Message:</b>
$message
<hr noshade="true" size="1" color="#000000" />
You can contact $sender_name back at $sender_email.";

// Lets send the e-mail by using the mail() function, no need to change below...this can be

edited above!
mail($recipient, $content, $header);

// Message the user will see if the e-mail is succesfully sended
echo "Thanks! Your comments has been sended succesfull $sender_name.";
}
?>

Reply

Jesse
Thank you heaps guys. I got it up and running now and it is working great. Your an awesome bunch of people smile.gif

Reply

Latest Entries

Jesse
Ok great thanx so much for that Tuddy. It was a great help.

Reply

tuddy
Yes, just HTML code within the "here"; and it will work.
CODE

// Message the user will see if the e-mail is succesfully sended
echo "Thanks! Your comments has been sent succesfully $sender_name.
<br><a href="http://www.zaccynetwork.com">Please Click Here</a>";
}

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : html, code, feedback, form

  1. Css Problem On Website
    I've uploaded the html/css files but the css isn't working/ (8)
  2. Www Vs. Public_html [resolved]
    (3)
    I didn't know where to post this..... this category seemed about as good a fit as there was. on
    most webservers (my trap 17 one included), there is a public_html folder and a www folder, anything
    uploaded into one also gets put in the other. so i am wondering what is the point of both of these
    folders? can someone tell me why each one exists?....
  3. Confirmation Code For Registration Users
    Why a confirmation code doesn't show on non-subsilver templates? (3)
    So yeah like the title states, I'm using this other template (fi subgreen) and for some reason
    when I go on the registration page of my forum it won't show the confirmation code. Is there
    something specific I'm supposed to edit to show this? Let me know the specifics please. I
    appreciate it, thanks. specific link: http://legendsofhyrule.trap17.com/zelda/pr...amp;agreed=true
    to get fisubgreen go to www.phpBBhacks.com and type in fisubgreen.....
  4. .php?id=html Not Working
    (15)
    I use a single php file for all my tag decorations and image calling so that each page is lighter
    and therefore isn't bogged down with the same repeated code over and over, which allows me not
    only to much easier change my layout and design (as I often do) but once I've finally gotten it
    up and working here, I realized none of the links work, I doubled, and triple checked them over and
    over again to make sure I wasn't making a mistake. I swore trap17 supported php, so why
    isn't it working? Am I missing some sorta code that i need to add, or need to take a....
  5. Html Editor Glitch
    (7)
    Three times I've tried using HTML Editor to edit my index.html page and the first 2 times it
    instantly deleted all the page's coding and replaced it with the word "undefined". I noticed
    the 3rd time after editing a page it gives the following message: QUOTE
    %2fhome%2fjoshua%2fpublic_html/index.html File Saved
    -------------------------------------------------------------------------------- open index.html
    failed: Permission denied at cpanel.pl line 469 Carp::croak('open index.html failed: Permission
    denied') called at /usr/local/cpanel/Cpanel/Fi....
  6. I Have A Question About Where To Put My Html.
    (6)
    yeah i'm hosting a sit on her but i'm completely lost on how this stuff works can someone
    tell me where i would put the html?? or just how i would go about making the site work with stuff
    acutally on it.. please i'm in desparate need of help.....
  7. Error Code In Subscriptions Page
    problems subscribing to topics (5)
    I'm seeing some weird warning message show up at the top of my page when I go into "my
    controls," then load my topic subscriptions page. At the top of the page, the following code appears
    several times: IPB WARNING in_array() : Wrong datatype for second argument (Line: 2711 of
    /sources/action_public/usercp.php) I'm guessing maybe that has something to do with the fact
    I'm having problems subscribing to my topics and posts? Thanks in advance for your help.....
  8. Can A Computer Idiot Have A Site Here?
    I don't know any code! (9)
    Hey guys- I just became a member, and I was taking a look at the features that are offered. It
    looks awesome! I have one major concern though, and I am sure that you can help me out. I have
    virtually no html/ scripting experience. I was anticipating being able to essentially type some
    stuff into something like a "Word" document for the content of my simple web pages. Is there some
    part of the file manager where I can do this? I am sorry if this question is answered elsewhere in
    the forums- I looked around for half an hour before I decided to post my question. ....
  9. Ftp Error Code 553
    I just couldnt find it... (9)
    When I'm uploading with my ftp client filezilla, it shows me this error: CODE
    553-Can't open that file: Permission denied 553 Rename/move failure: No such file or
    directory I remember experiencing this error before but I couldnt remember how to solve it, or
    if I'm able to solve it... I've tried out and it seems that folders with the .htcaccess are
    not affected by this and I've even try it on folders with CHMOD 777 and still get this error...
    I did a search around the forum and it didnt bring me any result and even tried google it an....
  10. My Feedback Php Module Isnt Working...
    (2)
    Well i tested by tryin to send myself a feedback and i receieved nothing in the mail about my
    feedback...i have no clue how to figure this out...i checked in my preferences and put down the
    right email address for myself im not sure wut else to do...do i have to get into any of the php
    files?? help me out ive had this problem ever since i started hosting a long time ago....
  11. E-mail Log-in
    need code to allow e-mail log-ins (2)
    I am just wondering if it's possible to make a log-in code type thing were my members can log-in
    to view there pop3 e-mails. If anyone knows how, if or were I can get one of these please post.....
  12. Help With Webhosting
    index.html? (4)
    I need help with my webhosting. Whenever I access http://portal.trap17.com , this comes up: QUOTE
    Welcome to your Hosting Account! This site is currently Hosted at trap17.com If you are
    seeing this message then it means that your site is up and your account is functioning properly.
    Please see to it that you do the following steps before you continue :- 1. Login to your cpanel
    by typing, http://yoursite.com/cpanel . 2. Enter the userID and Password. (check your PM at the
    Forums or your requested post) 3. Change the Email address in your Cpanel. (u....
  13. Cannot Connect To My Webserver - All Pages Give Error Code 500
    repeat, ALL of my webpages are giving Error Code 500! (3)
    To any Admin or Mod: This topic can be closed now, the problems seems to have disappeared... I
    got a major situation here!!! I was just viewing my site earlier, about ten minutes
    before midnight, checking my forums, etc. and there were no problems whatsoever. So I came here to
    check my credits (I had 20 when I visited), and do a few more posts. I went back to my site at 10
    past midnight, only to find I can no longer view any of my pages! All my pages are giving an
    Error Code 500. Why is this? I have not broken any rule or ran out of credits, and th....
  14. Html To Php Convertor?
    (12)
    Hey.I have made a simple website http://pakdir.com this is in html.But its very difficult to
    update the html pages.I want to convert it to php site.But i dont know about php language ... is
    there any "PHP website builder" ?? is there anyway to build a php website without knowledge of php ,
    with the help of some program ? for example there is a frontpage for html etc.Please tell me any
    solution?....
  15. Code For Firefox Compatibility?
    Is there such.. (7)
    i swear i have read about it somewhere on here, and ive been searching for such a long time
    now..but i was just wondering does anyone know/have a link to a code that makes websites compatable
    for firefox? cuz i need it :-D thanx!....
  16. Bb Code Length Editing Help
    (3)
    Hi, I need some help with a BB Code. I have a BB Code. The only problem with it is that it goes
    along the inter page. I want it to be approx. 50% of the Forum Reply page. How can I fix this
    problem. Thank you for your help with this slight BB Code problem.....
  17. Preinstalled Feedback Form?
    (2)
    Can any one tell me , if there is already any pre installed script for a feed back form ? Like a php
    feedback forum ? ( just a simple function , user can fill some form and that comes to me ?? if there
    is nothing like that, is there any way to create it ? thanks for help.have a good day.....
  18. Public_html Or Www Folder?
    Where to put web files? (5)
    heh..im kind of new to this..but where to i put my pages that i want to show up? like in...
    public_html www ??? plz help hehe Naming your topic title carefully would and will help
    other members in the future. Please take topic title and description seriously. ....
  19. Public_html Or Www Problem
    Site won't show up. (7)
    I've got a problem with my site. When I'm copying it in www folder and trying to look
    I've got only cpanel's error : There is no website configured at this address. So I thought
    that I need to copy my site in public_html folder and when I'm copying my site there I still got
    the same problem! Then I tried with "fantastico" to install nuke PHP. Instalation was completed
    succesfully but when I'm trying to get on my nuke It shows me the same : There is no website
    configured at this address. I'm hosting with mine domain... So where I must "co....
  20. Index.html
    How do you do it? (4)
    I know this is soO strange but when i upload my index.html what do i do after wards to make it my
    index.html for my website? i know i should know this but im kinda what people would call an IDIOT
    lol help me please.......
  21. Help With A Code
    (9)
    i may be bugging people with this but wats wrong with this code QUOTE $db =
    mysql_select_db("shadow_member",$connection)     or die ("couldn't select databse.");
    i enetered this code in another code so it would connect to the datavase were the table is but i got
    this message when i tested it out Warning: mysql_select_db(): supplied argument is not a valid
    MySQL-Link resource in /home/shadow/public_html/join.php on line 13 couldn't select databse.....
  22. Enabling Html At A Phpbb
    Can't get it going ... (7)
    I think I' ve done everything by the book. It was allowed on the forum ACP, it is allowed by
    user, it seems to be allowed on the posting form, the tag list has been added at the ACP, the
    preview accepts it , but the posts show the raw tags as part of the post. Is there anything else I
    need to do? Does the Admin have to allow it? Is it dis-allowed for the trap17 free hosted accounts?
    Your help is appreciated.....
  23. Html Body Background Tag Help
    (5)
    I was just about finish with my new subsite AmazingRed when I notioced next to the update box is a
    white line, which should be there. Anything think they can help me? The code.. CODE <body
    background="http://www.pretty.trap17.com/red/bg1.jpg" leftmargin="0"
    topmargin="0" rightmargin="0" bottommargin="0"> ....
  24. Is It Possible To Add Code To Phpbb
    Adding HTML & What Not (3)
    I wanted to know if it is possible to add code to phpbb if so how. By adding code I mean adding html
    so I could add stuff like affialiates and stuff like that. Thanks for your help. I also wanted to
    know if that is allowed before anyone posts an answer, I figured it is if you leave the copyright
    because it is open source.....
  25. Html Tag For A Code Box
    Where You Put HTML Code For Your Users (4)
    Well I have seen it all over the web. Lots of sites have code boxes so you can promote them or they
    show you a code you can use for javascript and stuff like that. I would like to know the HTML code
    for those boxes. Thanks in advance for your help.....
  26. Index.html Does Not Work!
    (12)
    I feel embarrassed to say this, but I do fall in trouble. I put my scripts to public_html directory,
    and I forgot what I did. When I go to my homepage, it shows all files and directories in the
    public_html directory, but not the right content of my homepage file index.html. If I click the
    index.html, the right content of index.html shows up. I means that the index.html or index.php
    won't be laughed. I find and try to recover it over and over, nothing happens. I am like a boy
    who make a mistake that he can't understand. Can anyone tell my what did I do and how t....
  27. Adding Webpages (html)
    (10)
    ok when i upload my other webpages where do i uplaod them to? i have uplaoded them to practily
    evrwhere and when i click a link on my index ( home ) page it doesn't read it proporly and sends
    me to can not find web page blah blah blah. What do i do? or where and how is the proper way to
    uplaod a hole site? ( html )....
  28. Indexing On Subdomains
    index.html does not show up (7)
    Hi there. When I creat html indexes they do not show up on my subdomains unless I directly link to
    them ie http://dark.unicornrose.com/index.html I know I should be able to just link this way
    http://dark.unicornrose.com and the index show up. If you will go there you will see instead it
    shows the directory index. How do I get it to stop showing that? Thank you very much! Beth....
  29. Anyone Want To Do A 'small' Code For Me?
    I need my links at my site fixed. (9)
    www.gigapass.trap17.com You see the links at the top? I need those to have maybe a backround that
    reflects the users current theme sidebar color, and I need them to be spread out left to right. I am
    currently trying to learn php, so I have no idea where to start/what to do.....
  30. The 'index.html' File
    Some help please :) (11)
    Ok when I enter my website address '...ork.trap17.com' I get the page where it says Welcome
    to your hosting account. But instead of that I want it to be my forum index which means I have to
    had '/index.php' on the end. How can I get rid of that page and make it my forum index? I
    have the index.php place in the public_html folder and have deleted all instances of index.html
    nearly 24 hours ago. /biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' />
    ~ Munchie ~....

    1. Looking for html, code, feedback, form

Searching Video's for html, code, feedback, form
advertisement



Help With Html Code - Feedback Form



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE