Jump to content

emediastudios

Members
  • Posts

    418
  • Joined

  • Last visited

Posts posted by emediastudios

  1. Can someone pick whats wrong with my code please

     

    if($_SESSION[passed] == "y"){
    
    $id=$_POST['id'];
    $title=$_POST['title'];
    $date=$_POST['date'];
    $text=$_POST['text'];
    
    
    $query = "INSERT INTO news id='NULL', title='$title', date='$date', text='$text'";
    $result = mysql_query($query) or die(mysql_error());
    
    header("Location: admin.php"); 
    }
      else{ 
      echo "You Must Be Logged In To Do That";
      }

  2. The user has no details in the database linked to them, so i dont need to populate a file with there details.

    Each user has there own file which is recorded in the page field, but i added the id field anyway.

     

    i only have 5 users, my table structure is:

     

    id, username, password, page.

     

    In the page field is a record that says for example goldwell.php, each user is different.

    What i want is, when they login, PHP to get the page record for that user and direct them to that page (the file in the Page field) on successful login.

     

    Thanks for any help

  3. I think im making progress

     

    <?php
    $sql="SELECT * FROM $tbl_name WHERE username='$username' and password='$password'";
    $result=mysql_query($sql);
    $page=$_GET['page'];
    
    // Mysql_num_row is counting table row
    $count=mysql_num_rows($result);
    // If result matched $username and $password, table row must be 1 row
    
    if($count==1){
    // Register $username, $password and redirect to file "templates.php"
    session_register("username");
    session_register("password"); 
    header("location:$page");
    }
    else {
    
    ob_end_flush();
    }
    }
    ?>

     

    This is wrong i'm sure

    header("location:$page");

     

    Is this right

    $sql="SELECT * FROM $tbl_name WHERE username='$username' and password='$password'";

    $result=mysql_query($sql);

    $page=$_GET['page'];

     

  4. I did as you metioned, and erased that piece of unnessesary code.

    Do i need to put LIMIT 1?

     

    I cust want to direct to the file that is a field (page) that corrasponds to the user name and password.

     

    for example a record in my users table is:

    username: barry

    password: backfilp

    page: bazza.php

     

    If they login with those details thay will be directed to the bazza.php file,

    I presume i get that info and put it in the header instead of ("location:advertiser.php");  be something like

    ($page);

     

     

    I Just dont know how to get the $page value from the database.'

    <?php

    session_register("username");

    session_register("password");

    header("location:advertiser.php");

    ?>

  5. Hi guys.

    I have a login script, and wanted to modify it.

    was originally a one user login but I have added more users now and a new field that says page, with the text file.php in there, that is the file for that user.

     

    There is no id field.

    My  script is below, what i need is to query the database and record the (page) info that matches against a user and pass and use that (page value) in the go to page. hearder

    Hope this makes  scense. :D

    <?php
    
    include('includes/include.php');
    
    
    #Form has been submitted?
    if((isset($_POST['login'])) AND ($_POST['login'] == 'Login')){
    ob_start();
    $host=""; // Host name 
    $username=""; // Mysql username 
    $password=""; // Mysql password 
    $db_name=""; // Database name 
    $tbl_name=""; // Table name 
    
    
    
    #Check for blanks and clean data
    $errors_login = array(); #Initiate error variable
    
    if(empty($_POST['username'])) $errors_login[] = 'You must enter a username.'; else $clean['username'] = htmlspecialchars($_POST['username']);
    if(empty($_POST['password'])) $errors_login[] = 'You must enter a password.'; else $clean['password'] = htmlspecialchars($_POST['password']);
    
    //verify password...
    $get_pass = mysql_query("SELECT * FROM $tbl_name WHERE password = '".$_POST['password']."'");
    $q = mysql_fetch_object($get_pass);
       if(!$q) { 
    $errors_login[] = 'Wrong password.'; 
    }
    
    	//verify user...
    $get_user = mysql_query("SELECT * FROM $tbl_name WHERE username = '".$_POST['username']."' ");
    $q = mysql_fetch_object($get_user);
       if(!$q) { 
    $errors_login[] = 'Wrong username.'; 
    }
    
    //check that username is only letters or numbers
    if (! preg_match('/^[a-zA-Z0-9]+$/i', $_POST['username'])){
    	$errors_login[]= "Your username must be <i><b>ONLY</b></i> letters or numbers.";
    }
    //check that password is only letters or numbers
    if (! preg_match('/^[a-zA-Z0-9]+$/i', $_POST['password'])){
    	$errors_login[]= "Your password must be <i><b>ONLY</b></i> letters or numbers.";
    }
    
    
    // Connect to server and select databse.
    mysql_connect("$host", "$username", "$password")or die("cannot connect"); 
    mysql_select_db("$db_name")or die("cannot select DB");
    
    // Define $username and $password 
    $username=$_POST['username']; 
    $password=$_POST['password']; 
    
    
    // To protect MySQL injection (more detail about MySQL injection)
    $username = stripslashes($username);
    $password = stripslashes($password);
    $username = mysql_real_escape_string($username);
    $password = mysql_real_escape_string($password);
    
    $sql="SELECT * FROM $tbl_name WHERE username='$username' and password='$password'";
    $result=mysql_query($sql);
    
    // Mysql_num_row is counting table row
    $count=mysql_num_rows($result);
    // If result matched $username and $password, table row must be 1 row
    
    if($count==1){
    // Register $username, $password and redirect to file "templates.php"
    session_register("username");
    session_register("password"); 
    header("location:advertiser.php");
    }
    else {
    
    ob_end_flush();
    }
    }
    ?>code]

  6. <?PHP
    if($_POST[password] == "" && $_SESSION[passed] != "y"){
      $content .= "<form method='post' action='admin.php'><input type='password' name='password' value='password'><input type=submit></form>";
    }
    else if($_POST[password] != ""){
      if($password == $_POST[password]){
       $_SESSION[passed] = "y";
      }
      else{
        echo "<script>window.location = 'admin.php';</script>";
      }
    }
    if($_SESSION[passed] == "y"){
    
    $path = "uploads/";
    
    $path = $path . basename( $_FILES['uploadedfile']['name']); 
    $name = basename( $_FILES['uploadedfile']['name']);
    
    if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $path)) {
        echo "File ".  basename( $_FILES['uploadedfile']['name']). 
        " Uploaded";
    } else{
        echo "Error";
    }
    
    $time=date("Y-m-d");
    $sql = mysql_query("INSERT INTO newsletter VALUES('NULL','$name','$date')") or die(mysql_error());
    
    $content .= "Newslettr Uploaded";
    
    echo $content;
    }
    
    
      else{ 
      echo "You Must Be Logged In To Do That";
      }
    
    ?>

  7. I changed the code to this

    but it inserts nothing and erases the text that is in that field.

     

    <?php
    include_once('includes/include.php');
    $AA=$_POST['news'];
    $query = "UPDATE ttnews SET news='$AA' WHERE id=1";
    $result = mysql_query($query) or die(mysql_error());
    
    header("Location: updated.php"); 
    
    ?>

  8. Im hoppless  :P

     

    I know someone here could do this in a second.

    This is my code, full of errors i know.

     

    <?php
    include_once('includes/include.php');
    $ttnews=$_POST['news'];
    $query = "UPDATE ttnews ,$ttnews";
    $result = mysql_query($query) or die(mysql_error());
    
    header("Location: updated.php"); 
    
    ?>

     

    I have 2 fileds in my ttnews table.

    1d and news.

     

  9. Quite an easy one for you PHPFREAKS, but not so for me.

    I'm teaching myself with the help of these forums.

     

    Im trying to echo the content in the field 'news' in a text field, and allow the ability to update the record.

    I have altered a file i had on another site and have got this fay.

    When i view the page i get "" only in the text box.

     

    <?php
    include_once('includes/include.php');
    $password = "s*********";
    
    if($_POST[password] == "" && $_SESSION[passed] != "y"){
      $content .= "<form method='post' action='admin.php'><input type='password' name='password' value='password'><input type=submit></form>";
    }
    else if($_POST[password] != ""){
      if($password == $_POST[password]){
       $_SESSION[passed] = "y";
      }
      else{
        echo "<script>window.location = 'admin.php';</script>";
      }
    }
    if($_SESSION[passed] == "y"){
    
    $content .= '<form id="form1" name="form1" method="post" action="">
      <table width="500" border="0" align="center">
        <tr>
          <td colspan="2"><label>
            </label>
          <div align="center">Edit News</div></td>
        </tr>
        
        <tr>
          <td> </td>
          <td><div align="center">
            <textarea name="ttnews" id="ttnews" cols="55" rows="10">"'.$ttnews[news].'"</textarea>
          </div></td>
        </tr>
        <tr>
          <td> </td>
          <td><label>
            <div align="center">
              <input type="submit" name="update" id="update" value="update" />
              </div>
          </label></td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
        </tr>
      </table>
    </form>';
    
    $query = "SELECT * FROM ttnews ORDER BY id ASC";
    $result = mysql_query($query) or die(mysql_error());
    $ttnews=mysql_fetch_array($result);
    
    
    echo $content;
    }
      else{ 
      echo "You Must Be Logged In To Do That";
      }
    
    ?>

  10. Well you should turn on error reporing.  by adding error_reporting(E_ALL).

     

    this is wrong.  you are already echoing in php. you cannot echo within an echo.

    window.open('print_salon.php?id= <?php echo $row[id]; ?>');\">
    

     

    should be:

    window.open('print_salon.php?id=$row[id]');\">
    

     

     

    Thanks man, topic solved.

     

  11. I coded this file with some help from these forums some time ago and am trying to alter it to suit a different site.

     

    I cant get it to show any results, im sure its simple, its just i am too.lol.

     

    Code in form

    <?PHP
        $query = "SELECT * FROM salon_accounts";
        $result = mysql_query($query) or die(mysql_error());
        $numrows = mysql_num_rows($result);
    
         if ($numrows == "0" ) {
    echo "<br>There are currently no records at this time<br><br>";
    
    } else {
    
    
         while ($row = mysql_fetch_array($result)) 
    {
      echo "<form action='delete_links.php' method='post' target='_self'><br><h3>Salon Application # $row[id]<h3><table width='800' class='border'>
      <tr><input type=\"button\"class=\"fields\"value=\"Printer Friendly\"onclick=\"window.open('print_salon.php?id= <?php echo $row[id]; ?>');\">
      <td width='200' class='td2'>Company name :</td>
      <td class='td1'>$row[company_name]</td><tr>
      <td class='td2'>Trading name :</td><td class='td1'>$row[trading_name]</tr></tr>
      <td class='td2'>acn abn :</td><td class='td1'>$row[acn_abn]</tr></tr>
      <td class='td2'>Street address :</td><td class='td1'>$row[street_address]</tr></tr>
      <td class='td2'>Postal address :</td><td class='td1'>$row[postal_address]</tr></tr>
      <td class='td2'>Owners name :</td><td class='td1'>$row[owner_name]</tr></tr>
      <td class='td2'>Contact number :</td><td class='td1'>$row[contact_number]</tr></tr>
      <td class='td2'>E-mail :</td><td class='td1'>$row[email]</tr></tr>
      <td class='td2'>Salon website :</td><td class='td1'>$row[salon_website]</tr></tr>
      <td class='td2'>Contact method :</td><td class='td1'>$row[contact_method]</tr></tr>
      <td class='td2'>Contact time :</td><td class='td1'>$row[contact_time]</tr></tr>
      <td class='td2'>Survey :</td><td class='td1'>$row[survey]</tr></tr>
      <td class='comments1'>Comments :</td><td class='comments'>$row[comments]</tr></tr>
      </table> <br/>
    
    <a href='delete_salons.php?action=delete&id=$row[id]'>DELETE FILE</a></form>";
    }
    
    }
    
    
    
    ?>

     

    and this is my printing file code.

     

    <?php
    $id = $_GET['id'];
    mysql_connect("localhost","root","5050888202");
    mysql_select_db("sde");
    $results = mysql_query("select * from salon_accounts where id='$id'");
    while($puller=mysql_fetch_array($results)) {
    
    // List Your Variables Like This And So On......
    $variable1=$puller["id"];
    $variable2=$puller["company_name"];
    $variable3=$puller["trading_name"];
    $variable4=$puller["acn_abn"];
    $variable5=$puller["street_address"];
    $variable6=$puller["postal_address"];
    $variable7=$puller["owner_name"];
    $variable8=$puller["contact_number"];
    $variable9=$puller["email"];
    $variable10=$puller["salon_website"];
    $variable11=$puller["contact_method"];
    $variable12=$puller["contact_time"];
    $variable13=$puller["survey"];
    $variable14=$puller["comments"];
    
    
    }
    
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="application/pdf" content="text/html; charset=utf-8" />
    <title><?php echo "Application $variable1"?></title>
    <style type="text/css"></style>
    
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>
    <style type="text/css">
    <!--
    .style1 {
    color: #000000;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:10px;
    }
    .style2 {
    color: #000000;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:10px;
    }
    .number {
    color: #FF0000;
    font-family: Arial, Helvetica, sans-serif;
    font-size:16px;
    font-weight:bold;
    }
    
    a:link {
    text-decoration: none;
    }
    a:visited {
    text-decoration: none;
    }
    a:hover {
    text-decoration: underline;
    }
    a:active {
    text-decoration: none;
    }
    
    body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    }
    .sub {
    color: #000000;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:bold;
    }
    -->
    </style>
    
    <body>
    <body onload="isReady=true">
    <br />
    <table width="600" border="0" align="center">
      <tr>
        <td colspan="4"><span class="sub">Salon Application  :</span> <span class="number"><?php echo "$variable2"?></span> <hr /></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Company name :</td>
        <td width="64%"><span class="style1"><?php echo "$variable2"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Trading name :</td>
        <td><span class="style1"><?php echo "$variable3"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">acn abn :</td>
        <td><span class="style1"><?php echo "$variable4"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Street address :</td>
        <td><span class="style2"><?php echo "$variable5"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Postal address :</td>
        <td><span class="style2"><?php echo "$variable6"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Owners name :</td>
        <td><span class="style2"><?php echo "$variable7"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Contact number :</td>
        <td><span class="style2"><?php echo "$variable8"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Contact time :</td>
        <td><span class="style1"><?php echo "$variable12"?></span></td>
      </tr>
      <tr>
        <td colspan="3" class="style2">Salon website :</td>
        <td><span class="style1"><?php echo "$variable10"?></span></td>
      </tr>
      <tr>

  12. I wanted to show the record count, total records, and i also wanted to show the text :There are no records if the table is empty.

     

    How would i include that in this code.

    <?PHP
        $query = "SELECT * FROM salon_accounts";
        $result = mysql_query($query) or die(mysql_error());
         while ($row = mysql_fetch_array($result)) 
    {
      echo "<form action='delete_links.php' method='post' target='_self'><br><h3>Salon Application # $row[id]<h3><table width='800' class='border'>
      <tr>
      <td width='200' class='td2'>Company name :</td>
      <td class='td1'>$row[company_name]</td><tr>
      <td class='td2'>Trading name :</td><td class='td1'>$row[trading_name]</tr></tr>
      <td class='td2'>acn abn :</td><td class='td1'>$row[acn_abn]</tr></tr>
      <td class='td2'>Street address :</td><td class='td1'>$row[street_address]</tr></tr>
      <td class='td2'>Postal address :</td><td class='td1'>$row[postal_address]</tr></tr>
      <td class='td2'>Owners name :</td><td class='td1'>$row[owner_name]</tr></tr>
      <td class='td2'>Contact number :</td><td class='td1'>$row[contact_number]</tr></tr>
      <td class='td2'>E-mail :</td><td class='td1'>$row[email]</tr></tr>
      <td class='td2'>Salon website :</td><td class='td1'>$row[salon_website]</tr></tr>
      <td class='td2'>Contact method :</td><td class='td1'>$row[contact_method]</tr></tr>
      <td class='td2'>Contact time :</td><td class='td1'>$row[contact_time]</tr></tr>
      <td class='td2'>Survey :</td><td class='td1'>$row[survey]</tr></tr>
      <td class='comments1'>Comments :</td><td class='comments'>$row[comments]</tr></tr>
      </table> <br/><a href='delete_links.php?action=delete&id=$row[id]'>DELETE FILE</a></form>";
      
    
    }
    ?>

  13. I changed my delete code to

    <? 
    session_start();
    if(!session_is_registered(user)){
    header("location:admin.php");
    }
    include('includes/include.php');
    
    #Form has been submitted?
    if(isset($_GET['action']))
    {
       $action=addslashes($_GET['action']);
    }
    
    if ( $action == "delete" ) {
    $id=$_POST['id'];
    $query = "DELETE FROM salon_accounts WHERE id='$id'";
    mysql_query($query) or die ( "Query failed due to: ".mysql_error());
    
    echo "deleted";
    }
    ?>

    But still doesnt delete record.

     

    Echos deleted but record remains.

     

    Could it have something to do with the $row.

     

    Here is the form again

     

    <?PHP
        $query = "SELECT * FROM salon_accounts";
        $result = mysql_query($query) or die(mysql_error());
         while ($row = mysql_fetch_array($result)) 
    {
      echo "<form action='delete_links.php' method='post' target='_self'><br><h3>Salon Application # $row[id]<h3><table width='800' class='border'>
      <tr>
      <td width='200' class='td2'>Company name :</td>
      <td class='td1'>$row[company_name]</td><tr>
      <td class='td2'>Trading name :</td><td class='td1'>$row[trading_name]</tr></tr>
      <td class='td2'>acn abn :</td><td class='td1'>$row[acn_abn]</tr></tr>
      <td class='td2'>Street address :</td><td class='td1'>$row[street_address]</tr></tr>
      <td class='td2'>Postal address :</td><td class='td1'>$row[postal_address]</tr></tr>
      <td class='td2'>Owners name :</td><td class='td1'>$row[owner_name]</tr></tr>
      <td class='td2'>Contact number :</td><td class='td1'>$row[contact_number]</tr></tr>
      <td class='td2'>E-mail :</td><td class='td1'>$row[email]</tr></tr>
      <td class='td2'>Salon website :</td><td class='td1'>$row[salon_website]</tr></tr>
      <td class='td2'>Contact method :</td><td class='td1'>$row[contact_method]</tr></tr>
      <td class='td2'>Contact time :</td><td class='td1'>$row[contact_time]</tr></tr>
      <td class='td2'>Survey :</td><td class='td1'>$row[survey]</tr></tr>
      <td class='comments1'>Comments :</td><td class='comments'>$row[comments]</tr></tr>
      </table> <br/><a href='delete_links.php?action=delete&id=$row[id]'>DELETE FILE</a></form>";
      
    
    }
    ?>

  14. I have altered my code to this but it doesnt delte the record

    this is my delete file code.

     

    <? 
    session_start();
    if(!session_is_registered(user)){
    header("location:admin.php");
    }
    include('includes/include.php');
    
    #Form has been submitted?
    if(isset($_GET['action']))
    {
       $action=addslashes($_GET['action']);
    }
    
    if ( $action == "delete" ) {
    $id=$_POST['$row id'];
    $query = "DELETE FROM salon_accounts WHERE id='$id'";
    $result = mysql_query($query) or die(mysql_error());
    
    echo "deleted";
    }
    ?>

     

    and this is the form'

     

    echo "<form action='delete_links.php' method='post' target='_self'><br><h3>Salon Application # $row[id]<h3><table width='800' class='border'>
      <tr>
      <td width='200' class='td2'>Company name :</td>
      <td class='td1'>$row[company_name]</td><tr>
      <td class='td2'>Trading name :</td><td class='td1'>$row[trading_name]</tr></tr>
      <td class='td2'>acn abn :</td><td class='td1'>$row[acn_abn]</tr></tr>
      <td class='td2'>Street address :</td><td class='td1'>$row[street_address]</tr></tr>
      <td class='td2'>Postal address :</td><td class='td1'>$row[postal_address]</tr></tr>
      <td class='td2'>Owners name :</td><td class='td1'>$row[owner_name]</tr></tr>
      <td class='td2'>Contact number :</td><td class='td1'>$row[contact_number]</tr></tr>
      <td class='td2'>E-mail :</td><td class='td1'>$row[email]</tr></tr>
      <td class='td2'>Salon website :</td><td class='td1'>$row[salon_website]</tr></tr>
      <td class='td2'>Contact method :</td><td class='td1'>$row[contact_method]</tr></tr>
      <td class='td2'>Contact time :</td><td class='td1'>$row[contact_time]</tr></tr>
      <td class='td2'>Survey :</td><td class='td1'>$row[survey]</tr></tr>
      <td class='comments1'>Comments :</td><td class='comments'>$row[comments]</tr></tr>
      </table> <br/><a href='delete_links.php?action=delete&id=$row[id]'>DELETE FILE</a></form>";

  15. Sorry to sound stupid but im a newbie to php.

     

    I built this code last night and it works for me, I just wanted to add a delete function,

    How would i do that if i wanted to filter through the acn_abn field?

     

     

    Code below

     <?PHP
        $query = "SELECT * FROM salon_accounts";
        $result = mysql_query($query) or die(mysql_error());
         while ($row = mysql_fetch_array($result)) 
    {
      echo "<table width='800'>
      <tr>
      <td width='200' class='borderbold'>Company name</td>
      <td class='border'>$row[company_name]</td><tr>
      <td class='borderbold'>Trading name</td><td class='border'>$row[trading_name]</tr></tr>
      <td class='borderbold'>acn abn</td><td class='border'>$row[acn_abn]</tr></tr>
      <td class='borderbold'>Street address</td><td class='border'>$row[street_address]</tr></tr>
      <td class='borderbold'>Postal address</td><td class='border'>$row[postal_address]</tr></tr>
      <td class='borderbold'>Owners name</td><td class='border'>$row[owner_name]</tr></tr>
      <td class='borderbold'>Contact number</td><td class='border'>$row[contact_number]</tr></tr>
      <td class='borderbold'>E-mail</td><td class='border'>$row[email]</tr></tr>
      <td class='borderbold'>Salon website</td><td class='border'>$row[salon_website]</tr></tr>
      <td class='borderbold'>Contact method</td><td class='border'>$row[contact_method]</tr></tr>
      <td class='borderbold'>Contact time</td><td class='border'>$row[contact_time]</tr></tr>
      <td class='borderbold'>Survey</td><td class='border'>$row[survey]</tr></tr>
      <td class='borderbold'>Comments</td><td class='border'>$row[comments]</tr></tr>
      </table> <br/>";
      
    
    }
    ?>

    Thanks anyone that can help.

    I figure i get this one formatted as i wish i will have no trouble altering my code to suit the other four files i need to do the same on.

     

  16. Hi everyone.

    Im still learning php and sql and will be for quite some time.

    I need a little help.

     

    I want a file to display all records in a page.

    the database name is "sde" and the table name is "salons"

    The fields in the record are:

     

    companyname

    tradingname

    acnabn

    streetaddress

    postaladdress

    salonownername

    salonemail

    salonwebsite

    contactmethod

    time

    survey

    comments

     

    I also wanted a delete function.

    Can someone point to me a tutorial on this?

    Or post a script i could alter to suit.

     

    Thanks

  17. I'm after someone to do a job for me,

    The other two programmer off this forum that work for me are too busy and i need this urgently.

    ill pay cash on completion.

     

    Is a array that i have built,

    Just need the rest of it completed.

    Which includes the building of the update record file and the ability to insert the data into a database.

    Then i need a file that shows the timetable , displays the record.

     

    Quotes welcomed

     

     

     

×
×
  • 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.