Jump to content

aebstract

Members
  • Posts

    1,105
  • Joined

  • Last visited

Posts posted by aebstract

  1. Okay I've narrowed it down. It is something in this:

     

    <?php
    ini_set ("display_errors", "1");
    error_reporting(E_ALL);
    header("Cache-control: private");
    if(isset($_SESSION["id"]))
    {
    header("Location: index.php?page=myaccount");
    exit;
    }
    
    $error = "";
    
    
    if(!isset($_SESSION["id"]))
    {
    
    if(isset($_POST['submit'])) {
    
    
    $result = mysql_query("SELECT id, active FROM p_users WHERE email=('$_POST[email1]') AND password=('".md5($_POST['password1'])."')") or die(mysql_error());
    
    
                if (mysql_num_rows($result) == 0) {
    				 $error .= '<div id=\"full_content\">The email and password you entered did not match with our database. <br /></div>';
    		} else {
    			 $worked = mysql_fetch_array($result);
    
           				if ($worked['active'] == '0') {
          						$content .= '<div id=\"full_content\">You have not confirmed your e-mail address <br /></div>';
          		        } else {
    
                             $_SESSION["id"] = $worked['id'];
    
                             header("Location: index.php?page=myaccount");
    						exit;
    
          			    }
    
    		}
    
    }
    
    }
    

     

    I echo the session_id just after this and it's there. Though if I kill the session with

    unset ($_SESSION);
    session_destroy();
    

     

    just before the echo, nothing displays. If I don't do it then I get: vh2nmus51cpeuhbcomgnucbom3

  2. This may help some, on my index.php page alone, not going to my login page.

     

    <?php
    session_start();
    header("Cache-control: private");
    
    mysql_connect("localhost","berryequipment","gU8Kso8Y") or die(mysql_error());
    mysql_select_db("berryequipment_net_db");
    
    $content = '';
    
    echo session_id();
    
    unset ($_SESSION);
    session_destroy();
    
    echo session_id();
    
    
    if (isset($_GET['page'])) {
    $page = ($_GET['page']);
    } else {
    $page = "home";
    }
    include "$page.php";
    ?>
    
    <html>
    <head>
    
    <title>BPE - Performance Parts Store</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" title="default" />
    
    </head>
    <body>
    
    <div id="container">
    
    
    
    
    
    
    
    
    
    
    <div id="container_left">
    
    <img src="logo.jpg">
    <br /><br />
    <br /><br />
    
    <div class="black_menu"><a href="/performance/">> Home Page</a></div>
    <div class="black_menu">> Home</div>
    <div class="black_menu">> Home</div>
    <div class="black_menu">
    <?php
    if(isset($_SESSION["id"]))
    {
    ?>
    <a href="index.php?page=myaccount">> My Account</a>
    <?php
    } else {
    ?>
    <a href="index.php?page=login">> Login</a>
    <?php
    }
    ?>
    </div>
    <div class="black_menu">> Contact Us</div>
    
    
    <div class="cat_menu_title">CATEGORY</div>
    
    
    <?php
    
    $result = mysql_query("SELECT DISTINCT category FROM `p_products`") or DIE(mysql_error());
    while($r = mysql_fetch_array($result))
    {
      $id = $r['id'];
      $category = $r['category'];
      echo "<div class=\"cat_menu\"><a href=\"index.php?page=product_page&product_cat=$category\">$category</a></div>";
    }
    
    
    
    ?>
    
    
    </div>
    
    
    
    
    
    
    
    
    <div id="container_right">
    
    <div id="user_box">
    
    <?php
    if(isset($_SESSION["id"]))
    {
    ?>
    
    
    
    <?php
    } else {
    ?>
    <div id="outsidelogin">Not a member? <a href="index.php?page=register">Register Now!</a> | sign in box >>></div>
    <div id="loginbox">
    <table class=\"login_form\" cellpadding=\"2\" cellspacing=\"0\">
    <tr><td>
    Email
    </td><td>box</td></tr>
    <tr><td>
    Password
    </td><td>box</td></tr>
    <tr><td>
    </td><td>login</td></tr>
    </table>
    </div>
    <?php
    }
    ?>
    </div>
    <div class="spacer"></div>
    <div id="featured_product"><img src="featured.jpg" /></div>
    <div class="spacer"></div>
    
    <div id="cat_box">    HOME > ETC</div>
    
    
    <div class="spacer"></div>
    
    
    <div id="product_container">
    
    <?php
    echo "$content";
    ?>
    
    </div>
    
    
    
    </div>
    
    
    <div style="clear:both;"></div>
    </div>
    
    </body>
    </html>
    
    I put this
    
    [code]
    echo session_id();
    
    unset ($_SESSION);
    session_destroy();
    
    echo session_id();
    

     

    This echos vh2nmus51cpeuhbcomgnucbom3 every time I refresh the page, only once not both times.

  3. I know for a fact that it is redirecting me because when I put index.php?logout it sends me to index.php, removing the rest. It wouldn't do that without a redirect. Also, for shits n giggles I changed it to if($_GET['logout'] == 1) and went to index.php?logout=1 and got redirected, logout=3 and nothing. So it's running through those lines fine.

    if(isset($logout))
    {
    unset ($_SESSION);
    session_destroy();
    echo "$logout";
    }
    

     

    Nothing gets echo'd.. though I could care less cause A: this isn't solving the problem either way, and B: there is no way it could get to the redirect if it wasn't firing off, and there's no way that ?logout would be removed from the url if it wasn't redirecting.

  4. That is everything, I just threw in a

    if(isset($logout))
    {
    unset ($_SESSION);
    session_destroy();
    header("Location: index.php");
    exit;
    }
    

     

    into the index.php, now making it:

     

    <?php
    session_start();
    header("Cache-control: private");
    
    mysql_connect("localhost","berryequipment","gU8Kso8Y") or die(mysql_error());
    mysql_select_db("berryequipment_net_db");
    
    $content = '';
    
    if(isset($logout))
    {
    unset ($_SESSION);
    session_destroy();
    header("Location: index.php");
    exit;
    }
    
    if (isset($_GET['page'])) {
    $page = ($_GET['page']);
    } else {
    $page = "home";
    }
    include "$page.php";
    ?>
    
    <html>
    <head>
    
    <title>BPE - Performance Parts Store</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" title="default" />
    
    </head>
    <body>
    
    <div id="container">
    
    
    
    
    
    
    
    
    
    
    <div id="container_left">
    
    <img src="logo.jpg">
    <br /><br />
    <br /><br />
    
    <div class="black_menu"><a href="/performance/">> Home Page</a></div>
    <div class="black_menu">> Home</div>
    <div class="black_menu">> Home</div>
    <div class="black_menu">
    <?php
    if(isset($_SESSION["id"]))
    {
    ?>
    <a href="index.php?page=myaccount">> My Account</a>
    <?php
    } else {
    ?>
    <a href="index.php?page=login">> Login</a>
    <?php
    }
    ?>
    </div>
    <div class="black_menu">> Contact Us</div>
    
    
    <div class="cat_menu_title">CATEGORY</div>
    
    
    <?php
    
    $result = mysql_query("SELECT DISTINCT category FROM `p_products`") or DIE(mysql_error());
    while($r = mysql_fetch_array($result))
    {
      $id = $r['id'];
      $category = $r['category'];
      echo "<div class=\"cat_menu\"><a href=\"index.php?page=product_page&product_cat=$category\">$category</a></div>";
    }
    
    
    
    ?>
    
    
    </div>
    
    
    
    
    
    
    
    
    <div id="container_right">
    
    <div id="user_box">
    
    <?php
    if(isset($_SESSION["id"]))
    {
    ?>
    
    
    
    <?php
    } else {
    ?>
    <div id="outsidelogin">Not a member? <a href="index.php?page=register">Register Now!</a> | sign in box >>></div>
    <div id="loginbox">
    <table class=\"login_form\" cellpadding=\"2\" cellspacing=\"0\">
    <tr><td>
    Email
    </td><td>box</td></tr>
    <tr><td>
    Password
    </td><td>box</td></tr>
    <tr><td>
    </td><td>login</td></tr>
    </table>
    </div>
    <?php
    }
    ?>
    </div>
    <div class="spacer"></div>
    <div id="featured_product"><img src="featured.jpg" /></div>
    <div class="spacer"></div>
    
    <div id="cat_box">    HOME > ETC</div>
    
    
    <div class="spacer"></div>
    
    
    <div id="product_container">
    
    <?php
    echo "$content";
    ?>
    
    </div>
    
    
    
    </div>
    
    
    <div style="clear:both;"></div>
    </div>
    
    </body>
    </html>
    

     

    Which I went to index.php?logout and it redirected me to index.php, I went back to login.php and it still showed that session_id.

    index.php includes login.php and that's all that should be used, I'm not leaving anything out :/

     

     

     

    edit: Fixed the variable error, still stuck with this error and this session_id being echo'd:

    Notice: A session had already been started - ignoring session_start() in /home/virtual/site21/fst/var/www/html/performance/login.php on line 4

    vh2nmus51cpeuhbcomgnucbom3

     

     

    edit 2: That little logout bit isn't doing anything to that session_id, it's remaining the same. I've always used that bit of code as a logout so I don't know?

     

     

    and edit 3: Notice: Undefined index: id in /home/virtual/site21/fst/var/www/html/performance/index.php on line 81

    Found this hidden in the side, was unaware it was on the page until I just noticed it.

  5. It's been posted twice now, above..

     

    login.php:

    <?php
    ini_set ("display_errors", "1");
    error_reporting(E_ALL);
    session_start();
    header("Cache-control: private");
    if(isset($_SESSION["id"]))
    {
    header("Location: index.php?page=myaccount");
    exit;
    }
    
    
    
    if(!isset($_SESSION["id"]))
    {
    
    if(isset($_POST['submit'])) {
    
    
    $result = mysql_query("SELECT id, active FROM p_users WHERE email=('$_POST[email1]') AND password=('".md5($_POST['password1'])."')") or die(mysql_error());
    
    
                if (mysql_num_rows($result) == 0) {
    				 $error .= '<div id=\"full_content\">The email and password you entered did not match with our database. <br /></div>';
    		} else {
    			 $worked = mysql_fetch_array($result);
    
           				if ($worked['active'] == '0') {
          						$content .= '<div id=\"full_content\">You have not confirmed your e-mail address <br /></div>';
          		        } else {
    
                             $_SESSION["id"] = $worked['id'];
    
                             header("Location: index.php?page=myaccount");
    						exit;
    
          			    }
    
    		}
    
    }
    
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    echo session_id();
    
    $content .= "<div id=\"full_content\">
    
    
    <form action=\"index.php?page=login\" method=\"post\" name=\"login\">
    
    
    <p>Login Form</p>
    
    
    
    $error
    
    
    <table class=\"registration_form\" cellpadding=\"2\" cellspacing=\"0\" align=\"center\">
    
    
    <tr><td align=\"right\">
    Email Address
    </td><td>
    <td width=20></td>
    <td>
    <input type=\"text\" size=\"20\" name=\"email1\" value=\"\" />
    </td></tr>
    
    <tr><td align=\"right\">
    Password
    </td><td>
    <td width=20></td>
    <td>
    <input type=\"password\" size=\"20\" name=\"password1\" value=\"\" />
    </td></tr>
    
    
    <tr><td align=\"right\">
    <br />
    </td><td>
    <td width=20></td>
    <td>
    </td></tr>
    
    <tr><td align=\"right\">
    </td><td>
    <td width=20></td>
    <td align=\"right\">
    <input type=\"submit\" name=\"submit\" class=\"textfield\" value=\"Login\" />
    </td></tr>
    
    
    </table>
    
    
    
    
    
    </div>";
    
    
    
    ?>
    

     

     

     

     

    index.php

    <?php
    session_start();
    header("Cache-control: private");
    
    mysql_connect("localhost","**","**") or die(mysql_error());
    mysql_select_db("**");
    
    $content = '';
    
    if (isset($_GET['page'])) {
    $page = ($_GET['page']);
    } else {
    $page = "home";
    }
    include "$page.php";
    ?>
    
    <html>
    <head>
    
    <title>BPE - Performance Parts Store</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" title="default" />
    
    </head>
    <body>
    
    <div id="container">
    
    
    
    
    
    
    
    
    
    
    <div id="container_left">
    
    <img src="logo.jpg">
    <br /><br />
    <br /><br />
    
    <div class="black_menu"><a href="/performance/">> Home Page</a></div>
    <div class="black_menu">> Home</div>
    <div class="black_menu">> Home</div>
    <div class="black_menu">
    <?php
    if(isset($_SESSION["id"]))
    {
    ?>
    <a href="index.php?page=myaccount">> My Account</a>
    <?php
    } else {
    ?>
    <a href="index.php?page=login">> Login</a>
    <?php
    }
    ?>
    </div>
    <div class="black_menu">> Contact Us</div>
    
    
    <div class="cat_menu_title">CATEGORY</div>
    
    
    <?php
    
    $result = mysql_query("SELECT DISTINCT category FROM `p_products`") or DIE(mysql_error());
    while($r = mysql_fetch_array($result))
    {
      $id = $r['id'];
      $category = $r['category'];
      echo "<div class=\"cat_menu\"><a href=\"index.php?page=product_page&product_cat=$category\">$category</a></div>";
    }
    
    
    
    ?>
    
    
    </div>
    
    
    
    
    
    
    
    
    <div id="container_right">
    
    <div id="user_box">
    
    <?php
    if(isset($_SESSION["id"]))
    {
    ?>
    
    
    
    <?php
    } else {
    ?>
    <div id="outsidelogin">Not a member? <a href="index.php?page=register">Register Now!</a> | sign in box >>></div>
    <div id="loginbox">
    <table class=\"login_form\" cellpadding=\"2\" cellspacing=\"0\">
    <tr><td>
    Email
    </td><td>box</td></tr>
    <tr><td>
    Password
    </td><td>box</td></tr>
    <tr><td>
    </td><td>login</td></tr>
    </table>
    </div>
    <?php
    }
    ?>
    </div>
    <div class="spacer"></div>
    <div id="featured_product"><img src="featured.jpg" /></div>
    <div class="spacer"></div>
    
    <div id="cat_box">    HOME > ETC</div>
    
    
    <div class="spacer"></div>
    
    
    <div id="product_container">
    
    <?php
    echo "$content";
    ?>
    
    </div>
    
    
    
    </div>
    
    
    <div style="clear:both;"></div>
    </div>
    
    </body>
    </html>
    

  6. It echos out through the index.php page, which is also where the database gets its connection. I can post the index page if needed, let me know.

     

    Notice: A session had already been started - ignoring session_start() in /home/virtual/site21/fst/var/www/html/performance/login.php on line 4
    
    Notice: Undefined variable: error in /home/virtual/site21/fst/var/www/html/performance/login.php on line 70
    

  7. I tried that and it had no effect. Upon first entering email/password to login it took me to the myaccount page, which at the top of the page has:

     

    session_start();
    header("Cache-control: private");
    if(!isset($_SESSION["id"]))
    {
    header("Location: index.php?page=login");
    }
    

     

    Once I left the page I could no longer access it. Session isn't setting for some reason.

  8. <?php
    session_start();
    header("Cache-control: private");
    if(isset($_SESSION["id"]))
    {
    header("Location: index.php?page=myaccount");
    }
    
    
    
    
    
    if(isset($_POST['submit'])) {
    
    
    $result = mysql_query("SELECT id, active FROM p_users WHERE email=('$_POST[email1]') AND password=('".md5($_POST['password1'])."')") or die(mysql_error());
    
    
                if (mysql_num_rows($result) == 0) {
    				 $error .= '<div id=\"full_content\">The email and password you entered did not match with our database. <br /></div>';
    		} else {
    			 $worked = mysql_fetch_array($result);
    
           				if ($worked[active] == '0') {
          						$content .= '<div id=\"full_content\">You have not confirmed your e-mail address <br /></div>';
          		        } else {
    
                             $_SESSION["id"] = $worked[id];
    
                             header("Location: index.php?page=myaccount");
    
    
          			    }
    
    		}
    
    }
    
    
    
    
    
    
    
    echo "$worked[active] $worked[id]";
    
    
    
    
    
    
    
    
    
    $content .= "<div id=\"full_content\">
    
    <form action=\"index.php?page=login\" method=\"post\" name=\"login\">
    
    
    <p>Login Form</p>
    
    
    
    $error
    
    
    <table class=\"registration_form\" cellpadding=\"2\" cellspacing=\"0\" align=\"center\">
    
    
    <tr><td align=\"right\">
    Email Address
    </td><td>
    <td width=20></td>
    <td>
    <input type=\"text\" size=\"20\" name=\"email1\" value=\"\" />
    </td></tr>
    
    <tr><td align=\"right\">
    Password
    </td><td>
    <td width=20></td>
    <td>
    <input type=\"password\" size=\"20\" name=\"password1\" value=\"\" />
    </td></tr>
    
    
    <tr><td align=\"right\">
    <br />
    </td><td>
    <td width=20></td>
    <td>
    </td></tr>
    
    <tr><td align=\"right\">
    </td><td>
    <td width=20></td>
    <td align=\"right\">
    <input type=\"submit\" name=\"submit\" class=\"textfield\" value=\"Login\" />
    </td></tr>
    
    
    </table>
    
    
    
    
    
    </div>";
    
    
    
    ?>
    

     

    You can see where I added the echo. It isn't echoing anything and I am receiving no errors. Also, I had it just send me to the myaccount.php page ONCE, after clicking home page it was back to not accessible and the login continued to fail.

  9. <?php
    session_start();
    header("Cache-control: private");
    if(isset($_SESSION["id"]))
    {
    header("Location: index.php?page=myaccount");
    }
    
    
    
    
    
    if(isset($_POST['submit'])) {
    
    
    $result = mysql_query("SELECT id, active FROM p_users WHERE email=('$_POST[email1]') AND password=('".md5($_POST['password1'])."')") or die(mysql_error());
    
    
                if (mysql_num_rows($result) == 0) {
    				 $error .= '<div id=\"full_content\">The email and password you entered did not match with our database. <br /></div>';
    		} else {
    			 $worked = mysql_fetch_array($result);
    
           				if ($worked[active] == '0') {
          						$content .= '<div id=\"full_content\">You have not confirmed your e-mail address <br /></div>';
          		        } else {
    
                             $_SESSION["id"] = $worked[id];
    
                             header("Location: index.php?page=myaccount");
    
    
          			    }
    
    		}
    
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    $content .= "<div id=\"full_content\">
    
    <form action=\"index.php?page=login\" method=\"post\" name=\"login\">
    
    
    <p>Login Form</p>
    
    
    
    $error
    
    
    <table class=\"registration_form\" cellpadding=\"2\" cellspacing=\"0\" align=\"center\">
    
    
    <tr><td align=\"right\">
    Email Address
    </td><td>
    <td width=20></td>
    <td>
    <input type=\"text\" size=\"20\" name=\"email1\" value=\"\" />
    </td></tr>
    
    <tr><td align=\"right\">
    Password
    </td><td>
    <td width=20></td>
    <td>
    <input type=\"password\" size=\"20\" name=\"password1\" value=\"\" />
    </td></tr>
    
    
    <tr><td align=\"right\">
    <br />
    </td><td>
    <td width=20></td>
    <td>
    </td></tr>
    
    <tr><td align=\"right\">
    </td><td>
    <td width=20></td>
    <td align=\"right\">
    <input type=\"submit\" name=\"submit\" class=\"textfield\" value=\"Login\" />
    </td></tr>
    
    
    </table>
    
    
    
    
    
    </div>";
    
    
    
    ?>

     

    Okay, basically this isn't setting the session id and I'm not seeing why it isn't so hopefully someone could point out my error? Thanks.

  10. So I'm trying to match an email with a regular expression to make sure it is at least a valid email in some sort of way.

     

      } elseif (!preg_match('\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b',$_POST['email1'])) {

     

    Entering an actual email address and I'll return my error on the next line that it is invalid. I'm thinking I got some sort of syntax with the preg_match incorrect?

  11. Okay, I was working with someone and had solved the topic lalal and would rather not bring it back up. I realized it won't really do anything by year and it won't add/remove a month from other months other than the current one found by date();. I need to be able to manually put in a month and year and be able to find the next month and previous month.

     

    $previous = date("F Y",strtotime('-1 month'));
    $next = date("F Y",strtotime('+1 month'));

  12. Simple question, how do you take a month.. be it the current month or any month you have stored in a variable and add one month to it to get the next month. Same with previous month. If I have April, I want to be able to get March and May.

    Thanks

  13. I don't really see a difference and I mainly copied the main part of the mail function from it so I don't see why it doesn't work. I can try redoing the thing to make sure but I don't know :/

     

    edit:

    heres my contact form on the main website:

    <?php
    
    
    
    if (isset ($_POST['submit'])) {
    
    if (empty ($_POST['firstname'])) {
    $problem = TRUE;
    $error .= 'Your firstname is a required field!<br />';
    }
    
    
    
    
    
    
    
    	if (!$problem) {
    $firstname = $_POST['firstname'];
    $lastname = $_POST['lastname'];
    $email = $_POST['email'];
    $name = "$firstname $lastname";
    $phonenumber1 = $_POST['phonenumber1'];
    $phonenumber2 = $_POST['phonenumber2'];
    $phonenumber3 = $_POST['phonenumber3'];
    $msg = $_POST['msg'];
    
    
    
    	$emailbody = "
    
    	$name<br />
    	$email<br />
    	$phonenumber1-$phonenumber2-$phonenumber3<br /><br />
    
    	$msg
    
    	";
    
    
    	$to  = 'webadmin@berryequipment.net' . ', '; // note the comma
    
    	// subject
    	$subject = 'Contact Form';
    
    	// message
    	$message = "
    	<html>
    	<head>
    	</head>
    	<body>
    	$emailbody
    	</body>
    	</html>
    	";
    
    	// To send HTML mail, the Content-type header must be set
    	$headers  = 'MIME-Version: 1.0' . "\r\n";
    	$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    
    	// Additional headers
    	$headers .= 'To: Berry Plumbing & Equipment <webadmin@berryequipment.net>' . "\r\n";
    
    	// Mail it
    	mail($to, $subject, $message, $headers);
    
    
                          header("Location: /contact/true/");
    
    
    
    	}
    
    }
    
    if ($va1 == true){
    
    $content .= "Thank you for submitting your message, we will get in touch with you as soon as possible.";
    
    } else {
    
    $content .= "
    
    <form action=\"/contact/\" method=\"post\" name=\"contact\">
    
    <h4>Contact Form</h4>
    <center>
    <div id=\"form\">
    <table><tr><td>
    <table class=\"formstyle\">
    <tr class=\"tabletr\"><td align=\"right\">
    First Name
    </td><td>
    <input type=\"text\" maxlength=\"20\" class=\"textfield2\" name=\"firstname\" value=\"$_POST[firstname]\" size=\"20\" />
    </td></tr>
    <tr><td align=\"right\">
    Last Name
    </td><td>
    <input type=\"text\" maxlength=\"20\" class=\"textfield2\" name=\"lastname\" value=\"$_POST[lastname]\" size=\"20\" />
    </td></tr>
    <tr><td align=\"right\">
    Email Address
    </td><td>
    <input type=\"text\" maxlength=\"50\" class=\"textfield2\" name=\"email\" value=\"$_POST[email]\" size=\"20\" />
    </td></tr>
    <tr><td align=\"right\">
    Telephone
    </td><td>
    <input type=\"text\" size=\"3\" class=\"textfield2\" onKeyup=\"autotab(this, document.contact.phonenumber2)\" maxlength=\"3\" name=\"phonenumber1\" value=\"$_POST[phonenumber1]\" />
    <input type=\"text\" size=\"3\" class=\"textfield2\"  onKeyup=\"autotab(this, document.contact.phonenumber3)\" maxlength=\"3\" name=\"phonenumber2\" value=\"$_POST[phonenumber2]\" />
    <input type=\"text\" size=\"3\" class=\"textfield2\" maxlength=\"4\" name=\"phonenumber3\" value=\"$_POST[phonenumber3]\" />
    </td></tr>
    </table></td><td>
    Message:
    <textarea cols=\"30\" rows=\"3\" name=\"msg\" class=\"textfield2\" value=\"$_POST[msg]\"></textarea><br />
       <input type=\"submit\" name=\"submit\" class=\"textfield2\" value=\"Send\" />
    </td></tr></table>
    </div>
    </center>
    
    </form>
    
    <br /><br /><br />
    
    6736 Cleveland Hwy,<br />
    Clermont, GA 30527<br />
    <br />
    Phone: 770-983-3929<br />
    Fax: 866-808-9957
    ";
    }
    ?>
    

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.