Jul 26, 2008

Problems With Php Form? - Can you please help?

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > PHP Programming

free web hosting

Problems With Php Form? - Can you please help?

JC05
I am trying to install a PHP form. I am using a tutorial I found in the tutorials section. It was really good, but I have a few problems. Here is the link, if you need it: http://www.trap17.com/forums/index.php?sho...ic=8118&hl=form Anyway, so I place the mailform.php in an html document on file manager right? So I do that. And I put it in the body:

CODE

<?php
$Name = $_POST['Name'];
$Subject = $_POST['Subject'];
$Email = $_POST['Email'];
$Site = $_POST['Site']; $Message=$_POST['Message'];
$align = $_POST['align'];
$to = "$EmailTo";
$subject = "$Subject";
$body = "$Message\n\n\n$Site\nBy: $Name";
$headers = "From: $Email\n";
mail($to,$subject,$body,$headers);
// After they've clicked "Send", this is where they are going... Change it to where you want them to go.
header("Location: sent.htm");
?>


I don't think I need to edit anything there right? I have all the other files set up, but there is a problem. When I go to do it, it sends the message to my email, but shows:

QUOTE

Warning: Cannot modify header information - headers already sent by (output started at /home/jc05/public_html/mailform.php:2) in /home/jc05/public_html/mailform.php on line 20


So I put it in the header, and it shows:

QUOTE

Warning: Cannot modify header information - headers already sent by (output started at /home/jc05/public_html/mailform.php:2) in /home/jc05/public_html/mailform.php on line 14


So whats up? There seems to be problems here. Does anyone know? I would really appreciate your help. Thanks in advance dudes cool.gif

 

 

 


Reply

Albus Dumbledore
a few things, the link to your site where the contact forum is located might help us a little, and i uploaded what was onthe post in the link you provided and i had no problem with it... did you modify the code in any way shape or form? which it doesn't look like it..

Reply

Tyssen
Problems with 'headers already sent' usually indicates you have some HTML above your PHP which you can't do.

Reply

jlhaslip
Have a look at this script. I wrote it for one of my sites.

CODE

<?php
// move these variables to a cfg.ini file included at the head of this file???
$site_email = 'jlhaslip@yahoo.ca';
$site_name = 'Web Site Template Distibution File';
if (isset($_POST['posted'])) {
$email = trim($_POST['email']);
$f_name = trim($_POST['first_name']);
$l_name = trim($_POST['last_name']);
$body = trim($_POST['note_wide']) ;
$date = trim(date("D M j G:i:s T Y"));
$name = $f_name . ' ' . $l_name;
$theresults = ereg("^[^@ ]+@[^@ ]+\.[^@ \.]+$", $email, $trashed);

if ( $f_name == "" || $f_name == " ") {
echo '<p><span class="border bold red">A first name is required</span></p>';
}
elseif ( $l_name == "" || $l_name == " " ) {
echo '<p><span class="border bold red">A last name is required</span></p>';
}
elseif ( $email == "" || $email == " " ) {
echo '<p><span class="border bold red">An email address is required</span></p>';
}
elseif (!$theresults) {
echo '<p><span class="border bold red">The email address must be in a valid form similar to " your_name@example.com ".</span></p>';
}

elseif ( $body == "" || $body == " " ) {
echo '<p><span class="border bold red">A message body is required</span></p>';
}
}
if ( $f_name && $l_name && $email && $body) {
$file_name = "message_data.txt";
// Error Supress the fopen
$handle = @fopen($file_name, "a");
// Check for successful fopen
if (!$handle) {
// error message and exit if no file handle available
echo "File Handle Not Available For Use"; exit;
}
$body = strip_tags(str_replace( "\r" , ' ' , $body ));
$body = str_replace( "\n" , ' ' , $body );
$body = str_replace( ',' , '' , $body );
$body = str_replace( "\'" , '&' , $body );
$body = str_replace( "\"" , '&' , $body );
$message_string = $date . ' , ' . $name . ' , ' . $email . ',' . $body . ',' . $_SERVER['REMOTE_ADDR']."\r\n";
fwrite($handle, $message_string);
//close the open file prior to ending
fclose($handle);
if (@mail( $site_email, $site_name, $body,"From: $email <$name>\r\n")) {
echo '<p class="border"><span class="bold red">Thank you for submitting this message. </span><br /><br /><span class="bold">Your comments and requests are important to us. If a reply is required, you can expect to hear from us shortly.</span><br /><br /><span class="bold red">Thanks again.</span> Select from the Menu to navigate to another page, or <a href="index.html" title=" Return to the site Home Page"> here </a> to reurn to the Index page..</p>';
unset($_POST);$_POST['posted'] = 'false';

}
else {
echo "<p class=\"border red\">Message failed to be accepted by the Mail system. <br /><span class=\"bold\">Please send the message to $site_email from your own email program.</span> <br />The site has been sent a report of the mail system failure, but not the contents of the message.<br /> Be certain to alter the permissions of the message data file to at minimum '666'.<br />We will endevour to correct the problem immediately.</p>";
unset($_POST);$_POST['posted'] = 'false';


}
};
?>
<form action="<?php $_SERVER['PHP_SELF'] ?>" method="post" enctype="multipart/form-data">
<?php if (!isset($_POST['posted'])) { echo '<p><strong>All</strong> fields are required.</p>';} ?>
<fieldset><legend>Personal Information</legend>
<div class="notes">
<h4>Personal Information</h4>
<p class="last">Please enter your name and a valid email address, then your message.<br />
We will never sell or disclose your email address to anyone. </p>
</div>
<div class="required">

<label for="first_name">First Name:</label>
<input type="text" name="first_name" id="first_name" class="inputText" size="20" maxlength="40" value="<?php echo $_POST['first_name'] ?>" />
</div>
<div class="hidden">
<input type="hidden" name="posted" value="true" />
</div>
<div class="required">

<label for="last_name">Last Name:</label>
<input type="text" name="last_name" id="last_name" class="inputText" size="20" maxlength="40" value="<?php echo $_POST['last_name'] ?>" />
</div>
<div class="required">
<label for="email">Email:</label>
<input type="text" name="email" id="email" class="inputText" size="40" maxlength="100" value="<?php echo $_POST['email'] ?>" />
</div>

<fieldset>
<div class="required wide">

<label for="note_wide">Your Message:</label>
<textarea name="note_wide" id="note_wide" class="inputTextarea" rows="6" cols="55"><?php echo $_POST['note_wide'] ?></textarea>
<br />
<small>We would love to get your feedback or any comments on your experience with us.</small>
</div>
</fieldset>

<fieldset>
<div class="submit">
<div>
<input type="submit" class="inputSubmit" value="Submit »" />
<input type="reset" class="inputSubmit" value="Reset Form" />
</div>
</div>
</fieldset>
</form>
</div>

Instead of having an automatic redirect, there is a message which displays the results of the form handling and if successful, a link to return to a defined page. It does require a client to interact with the page on completion, but it also provides them with an indication of the results of this Form submission, so there is a trade-off. In addition to sending an email, it also writes a message to a data file which I have a script to print-out, so if you want that, please send me a message and I'll provide it, too.

 

 

 


Reply

JC05
Tyssen:
Tyssen gets the cake. Dude that is awesome thanks! I was realy getting confused. I had a little bit of html above it, just a body tag with the BG color, and that is what was gumming the whole thing up.

And to everyone, thanks for your help, couldn't have done it without you, Cheers!

Reply

gaea
Just a heads up: Your script doesn't provide any error checking or validation...which means people can leave it blank or just enter garbage values. It also doesn't have any injection protection, which means spammers could use it to send out craploads of spam. If you're interested in a script without these issues check out:

http://www.trap17.com/forums/index.php?sho...14&#entry240314

Reply

trace-uk
I found it alot easier to use the free php form from www.thesitewizard.com its very easy to set up.

Reply

JC05
Well I tried something new, I edited the fields, and put new ones in, but is only sending me a few. And it is not very good. Out of all fields, it only send me the name, email, subject, and that is it. What is wrong? Here is the code I am using:

CODE

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body bgcolor="#ffffff">
<form action="mailform.php" method="post">
<input type=hidden name=EmailTo value="emailhere">
<br>Your Name:
<br><input type="text" value="" name="Name">
<br>Subject:
<br>
<input type="text" value="" name="Subject">
<br>Your Email:
<br>
<input type="text" value="" name="Email">
<br>How did you find us?:
<br><select name="Found Through:">
<option value="Search Engine" selected="selected">Search Engine</option>
<option value="Newspaper/Magazine">Newspaper/Magazine</option>
<option value="Television/Radio">Television/Radio</option>
<option value="Online Advertising">Online Advertising</option>
<option value="Offline Advertising">Offline Advertising</option>
<option value="Word of mouth">Word of mouth</option>
<option value="Other">Other</option></select>
<br>What Type Of Request is This? (Required)
<br><select name="Request type:">
<option value="Custom Computer" selected="selected">Custom Computer</option>
<option value="Standard Package (See below)">Standard Package (See below)</option>
<option value="Question or Comment">Question or Comment</option></select>
<br>Package (If requesting premade)
<br><select name="Package #:">
<option value="Basic" selected="selected">Basic</option>
<option value="Home/Office">Home/Office</option>
<option value="Ultimate Gaming">Ultimate Gaming</option></select>
<br>Custom Specs/Package Modification
<br><textarea name="Custom Specs/Package Modification" rows="6" cols="30">&nbsp;</textarea>
<br>Questions/Comments
<br><textarea name="Questions/Comments" rows="6" cols="30">&nbsp;</textarea>
<br>
<input type="submit" value="Send">
<input type="reset" value="Reset"></form>
<p><a href="java script:history.back()">Go Back</a></p>
</body>
</html>


Like I said, I am using this code: http://www.trap17.com/forums/index.php?sho...ic=8118&hl=form and I actually realized that there has to be a code in the mailform.php for every field. Is that right? Since it will only send you what the command there says to right? Anyway, could someone please edit that mailform code at the other page for the forms with the supplied code? I would really appreciate it. I wil link on the main page of my site to anyone who will. Thanks!

Thanks.

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:

Similar Topics

Keywords : problems, php, form

  1. Vb 2008 Linking To Another Form..
    (0)
  2. The G8 Summit And The True Problems Of The World!
    They couldn't care less... (6)
    As you probably have heard these days the G-8 summit is taking place in Toyako, Japan. I am not an
    anti-globalisation activist, but there is no way you can't hate them after this meeting
    (meetings). They discussed some very important world issues like the global warming, how to decrease
    CO2 emissions and the pressing problem of increasing food costs which translates in a global food
    crisis. Regarding the first subjects, just as they do every G-8 summit, they agreed to decrease C02
    emissions by half by 2050. It's not like it's too little, much too late... As ....
  3. Problems?!
    {user: alex1985] (1)
    Hi, I got some problems mainly related to connection issue. Firstly, I can connect to FTP server to
    upload files. Secondly, I can not access cpanel account, it does not accept my registered data, the
    one which is totally right. I do not what happened because it was working fine before. ....
  4. Problems Logging Onto Some Websites
    (4)
    Recently, I've been having problems staying logged in on certain forums. when i fill up my
    username and password, the page reloads and goes to the member page, but when i try to click
    something only applicable to members, it brings me to the guest pages and asks me to log in again.
    This has happened to me on the Credit system on Trap17 and a couple of other forums as well.
    I've cleared the cookies, reloaded the pages and stuff but to no avail. Any ideas?....
  5. Application Form [approved]
    (2)
    PRESENT CREDITS : HOSTING CREDITS : 37.65 Forum Username : Dhruv Display Username: Dhruv Email
    Address:dhruvin_patel@hotmail.co.uk My request is for: HOSTING PACKAGE 1 Your Registered Domain
    Name or Desired Trap17 Subdomain Name: tutorial-linker.trap17.com Introduce Yourself: Your hobbies,
    interests, talents, etc. Let the forum know you better. • My name is Dhruvin. Hobbies: Girls, gaming
    and computers. I have no talents I'm just a all rounder can do everything if i like biggrin.gif
    .Live in United Kingdom. And am a student. Desired Hosting Account Username: 8....
  6. Problems With Apache Alias
    I want to install RPG Web Profiler (0)
    Hello, I want to install RPG Web Profiler on my web site. It seems easy with a very few steps but
    I have never worked with Apache before. The readme of setup. This is the step I couldnt
    understand, the last step. QUOTE 5. Create the following entry in my Apache configuration.
    Alias /profiler "/home/tarlen/profiler/public_profiler" AllowOverride All Order
    allow,deny Allow from all By the way, Im using Trap17 CP. ....
  7. Gahhh This Isn't Going Well Please Help!
    It's a forgot password form in php! (12)
    CODE <? // database connection details stored here include "database.php"; ?>
    <!doctype html public "-//w3c//dtd html 3.2//en"> <html> <head>
    <title>Thanks!</title> </head> <body bgcolor="#ffffff"
    text="#000000"> <? $email=mysql_real_escape_string($email);
    $status = "OK"; $msg=""; //error_reporting(E_ERROR | E_PARSE |
    E_CORE_ERROR); if (!stristr($email,"@") OR !stristr(�....
  8. Html Form!
    Using MySQL?! (4)
    Hey, I need your help again! I need some good working tutorial how I can update my SQL through
    HTML form. I did use some tutorials online found with the help of google; but they do not work
    properly; I mean there are still small mistakes. I need to have a good tutorial to follow. It
    should be based on security and more things. It has to be done in proper way.......
  9. Install And Uninstall Problems
    Mozilla Thunderbird will not allow one or the other. (3)
    Hi, I tried to update Mozilla Thunderbird (email client) from version 2.0.04 to 2.0.012, especially
    because the older version was not functioning 100 % anymore. However, when trying to install
    2.0.0.12, a few seconds after the install start screen I get the following window that pops up:
    QUOTE "--------------------------- Mozilla Thunderbird Setup --------------------------- Error
    opening file for writing: C:\Program Files\Mozilla Thunderbird\mozMapi32.dll Click
    Retry to try again, or Cancel to stop the installation. --------------------------- Re....
  10. How To Test System Stability
    Hardware problems / How to test system stability (3)
    QUOTE I've made simple batch files using cpuburn4 in conjunction with runprio.exe for
    maximum stressing of components. Important: Be sure to close all open documents. If your PC crashes
    during testing, your data will be lost if you don't. I'd recommend not to use your PC while
    testing, since it will be very slow during testing (the test is run in high priority mode). After
    downloading the ZIP file, do the following: - Extract. - Now run one of these files:
    !burnP5.bat - Intel Pentium w&w/o MMX processors !burnP6.bat - Intel PentiumPro, PentiumI....
  11. Stomach Problems
    (6)
    Over the last 3 years i have been heavily drinking alcohol due to working behind a bar in a
    nightclub. i was drinking vodka, brandy, bacardi and various other spirits. over time i started to
    get pains in my stomach and started vomiting blood regulary. i went to the doctors various times and
    they just said stop drinking. so i did. the pains still occured and i kept getting really bad
    heartburn and was taking gaviscon every night. i had a camera down my throat and they told me i have
    reflux asophagitis and a hernia in my stomach which is allowing acid to come up. they have....
  12. My Problems Continue :(
    (8)
    ok so yeah if you have read my other topics you now i love this girl who is one of my close friends
    but she is going with this guy i hate...my one friend asked her what she saw in him and she said
    that he is the only one that treats her like a girl, like she is supposed to be treated, he is nice,
    funny and cares about her. This deeply hurt me :'( and to add to it, she told my friend that she
    wasnt going to even hang out with us because me and all my friends hate her boyfriend...so i went
    home and IMed her and asked her in the exact way my friend did and she gave me t....
  13. Problems With The Sony Ericsson S500?
    (8)
    Hey guys, I plan to buy the Sony Ericsson S500 soon. I've tried reading a few reviews and I
    stumbled across a post which said that the keys of the S500 are cracking!!! Is that
    true? Does anyone own the Se S500. I've already fallen in love with the phone and it would be
    sad if the phone was defective!!! Heres a peek at the phone. You guys will fall in love
    a well!!!! http://www.sonyericsson.com/spg.jsp?cc=GB&...p&pid=10854 Here are
    some of the features that are unique to this phone: -- Lights very similar to the Nokia ....
  14. Internet Problems
    (2)
    Ok, so I have a WBR-1310 D-Link router(wireless G router). I have a mac that is connected wirelessly
    with a B network card and I have a PC that is connected by a cable. The problem is, my PC keeps
    losing connection every 10 minutes or so for maybe 30 seconds. Is this because of the B connection
    interfering or do I just have a bad router? Thanks for the help.....
  15. Php Problems?
    Seems to be some problem with PHP??? (8)
    Hi I get this on my page: /sad.gif" style="vertical-align:middle" emoid=":(" border="0"
    alt="sad.gif" /> QUOTE Warning: Unknown: open_basedir restriction in effect.
    File(/home/ortehak/public_html/index.php) is not within the allowed path(s): (1) in Unknown on line
    0 Warning: Unknown: failed to open stream: Operation not permitted in Unknown on line 0 Fatal
    error: Unknown: Failed opening required '/home/ortehak/public_html/index.php'
    (include_path='.:/usr/lib/php:/usr/local/lib/php') in Unknown on line 0 Regards Hakan
    added quote tags ....
  16. 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.....
  17. Problems With My Computer Fan
    (15)
    On some computers, when you first turn it on your fan spins loudly, and then goes quiet. However,
    mine goes loud and stays loud, and then I have to keep turning it off and back on until it goes
    normal. I was wondering if anyone had this problem or if anyone knows how to fix it?....
  18. Connection Problems And High Ping Playing Battlefield 2
    (13)
    Anyone know of a solution to the connection problems, lag issues and high ping that I have only
    recently started having while playing BF2? My system is only 2 weeks old... AMD 4000+, Asus A8N SLI
    Deluxe, SoundBlaster Audigy 4, EVGA 7900GS and to be honest the game play sucks. Constant
    disconnects, sound hanging up like a stuck record, just prior to entering a game online. The first
    time I try to join my regular server I get "there's a problem with your connection" and kicks
    me. I try again and get in this time, then my ping goes crazy, sometimes up to 900 and then I ....
  19. Google/gmail Problems
    (13)
    Is anyone else having problems accessing gmail and/or google? I havnt been able to open either all
    day.....
  20. Dell Computer Problems Need Help.
    (7)
    Ok i have recieved as a present my uncles dell latitude x1 laptop. Its Operating system ahs been re
    installed and it worked for the first few hours i had it but then it started randomly locking up and
    making a weird sysren noise, and now when i try and boot it up it says that no hard drive or
    bootable devices can be found. What can i do, is there anything that i can do insted of calling dell
    out on monday (still have next day support) and has any one else had this problem. Thanks....
  21. Using Mobile Phone As A Modem
    Does any1 do this? And can you help with my problems (37)
    Hi all, i currently am using my Sony Ericsson T610 as a modem on my laptop using a data cable on
    Optus in Australia and i have been doing it for free for about a week now and it's great but it
    dose have it's up's and downs. Ok using my Sony Ericsson T610 as a modem i can visit most
    sites but some sites such as awardspace don't work but i found a way to get around it. If you
    can't access cetain sites i just use a Proxy such as http://www.vpntunnel.net and it usually
    fixes that problem, otherwise i can't access it all together. OK another problem ....
  22. Love Problems?
    (8)
    having a problem with love? think you're in it but not sure? don't know how to say how you
    feel? get nervous around them? post or send me a message that answers these questions: Gender: How
    far into relationship: Past Problem(s): Current problem(s):....
  23. Razr Problems
    Keypad Doesn't Work (17)
    Hello, Can anyone help me? I own a Motorola Razr V3 and the only key that works is the on off
    button. I have never dropped it and i take excellent care of my phones. It was working fine for a
    few months and one day it just stopped working. The screen still works and I can awnser phone calls
    by opening the flip part, but I can't call anyone or text or anything that requires pushing a
    button unless it is to turn it on or off. I hace looked online and it seemse other people ahve had
    this problem but no one ever had a solution. Should I try to fix it? Should I ....
  24. Guy Problems
    I need some serious advice! (34)
    hey everyone. I have a serious problem on my hands. Let me start here.. I started going out with
    this guy a year and 4 months ago. While we were together he used to get drunk all the time and
    completely hurt me.. Not physically but emotionally and mentally. Its like.. when he gets one beer
    in his system he doesn't care about me or us. Everything sets him off. So I put up with him
    for a year or so. I was use to the weekends being a mess.I knew that I would get ditched at least
    once or twice every week, have him leave my house out of nowhere for stupid reasons....
  25. Problems With Outlook Express
    My email configuration isn't working (6)
    Does anyone have a clue as to why my outgoing email isn't working with Outlook express? I can
    get incoming mail, but I'm getting an error when I try to send email. I followed the
    configuration instructions, but it still isn't working correctly. I get an error everytime.....
  26. Form To Php Mail. Attachment
    (14)
    i know there are a few topics talk about attachment problem, but i want to know if anyone could show
    me a basic code for attaching files like pictures with the message. I made a html form, and
    redirect the information to my mail.php file to process the information and send it to my email. I
    want to know what do i have to do to attach files like pictures. I tried to search on google, and
    the codes are so complicated (i'm an amateur at this). Would it be possilbe if you could show me
    the code and explain to me what it does and how i could customize it to fit my needs?....
  27. Nokia 6600 Virus Problems
    (10)
    I have some problems with my mobile phone (NOKIA 6600). I got a virus from someone via bluetooth
    and it is ´killing´nokia. I tried F-secure protection but it isn't working. Please, help
    me!....
  28. Computer Problems - Hanging/crashing
    PC Randomly Crashes And Hangs, Ideas? (16)
    I recently got a new computer, a NEC i-Select D5410. A few days ago it started to randomly crash,
    and all inputs and outputs were cut. The monitor displayed "No Signal", the keyboard and mouse
    stopped working and the speakers cut out, yet the power light remained on, and the fans were still
    spinning. Opening the DVD and CD drive still worked, so it isn't a power or mobo failure, as far
    as I am aware. In an attempt to remedy the problem I have moved the computer into a more open area
    to try and improve air flow, as I belive the problem is overheating or lack of air c....
  29. *** Click Here To Get Your Free Hosting ***
    Trap17 Free Web Hosting Request Form - FILL OUT THIS FORM (1)
    Welcome to Trap17 Free Web Hosting. Before you start, read the Trap17 Readme . NOTE:
    Trap17 is not like other forums where you can still survive without reading stickies. If you
    don't read the Trap17 sticky you will NOT UNDERSTAND how to get hosting. Please take a few
    minutes to do that now. Some more info: A NOTE TO NEW MEMBERS (those who haven't yet
    participated in our forums) Before you post an application, You must participate in our forum and
    collect "Hosting Credits". You earn "Hosting Credits" when you make a post. You should make good
    genui....
  30. Free Windowsxp Sp2 Cd From Microsoft
    just fill the request form and recive it (12)
    microsoft offer 100% free windows xp sp2. just go to this link
    http://www.microsoft.com/windowsxp/downloa...us/default.mspx and fill your address they will send
    you the cd to you. I just recive the cd yesterday. /biggrin.gif' border='0'
    style='vertical-align:middle' alt='biggrin.gif' /> I see new feature like directx 9c , WMP9 ,
    firewall , and the one I like is popup blocker! /wink.gif' border='0'
    style='vertical-align:middle' alt='wink.gif' /> PS. waiting for the cd about 1-2 week if you
    write an exact address.....

    1. Looking for problems, php, form

Searching Video's for problems, php, form
advertisement



Problems With Php Form? - Can you please help?



 

 

 

 

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