Jump to content

[SOLVED] php and css


RCS

Recommended Posts

Okay, I created a community script for my website...

I created the php files then my css pages....

When I go to include my php files into the css div tags the php is not showing up.

The one page is made up of many scripts so I need to have multiple connections to the database

e.g. I have

<?php 
include "config.php"; 
echo "<center>"; 
if($logged[id]) { 
//welcomes the member 
echo "Welcome $logged[username]<br><br>"; 
//shows the user menu 
echo " 
<a href='editprofile.php'>Edit Profile</a>
- <a href='changepassword.php'>Change Password</a>
- <a href='members.php'>Members</a>
- <a href='inbox.php'>In Box</a>
- <a href='compose.php'>Compose</a>
- <a href='logout.php?logout'>Logout</a>"; 
echo "<center>"; 
}else 
//if there trying to login 
if(isset($_GET['login'])) { 
//removes sql injections from the data 
$username= htmlspecialchars(addslashes($_POST[username]));  
//encrypts the password 
$password = sha1(md5(md5(sha1(md5(sha1(sha1(md5($_POST[password])))))))); 
//gets the username data from the members database 
$uinfo = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'") or die(mysql_error());  
//see if the user exists 
$checkuser = mysql_num_rows($uinfo); 
//if user name not found in database error 
if($checkuser == '0') 
{ 
echo "Username not found"; 
}else{ 
//fetch the sql 
$udata = mysql_fetch_array($uinfo); 
//checks see if the account is verified 
if($udata[userlevel] == 1) {  
echo "This account had not been verified."; 
} 
//if it is continue 
else 
//if the db password and the logged in password are the same login 
if($udata[password] == $password) { 
$query = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'") or die(mysql_error());  
//fetchs the sql 
$user = mysql_fetch_array($query); 
//sets the logged session 
$_SESSION['id'] = "$user[id]"; 
$_SESSION['password'] = "$user[password]"; 

echo "You are now logged in, Please wait. . ."; 
//redirects them 
echo "<meta http-equiv='Refresh' content='2; URL=login.php'/>"; 
} 
//wrong password 
else{ 
echo "Incorrect username or password!";  
} 
} 
}else{ 
//If not the above show the login form 
echo "LOGIN HERE
<form action='login.php?login' method='post'> 
<table width='312'> 
  <tr> 
    <td width='120'>Username:</td> 
    <td width='180'><input type='text' name='username' size='30' maxlength='25'></td> 
  </tr> 
  <tr> 
    <td>Password:</td> 
    <td><input type='password' name='password' size='30' maxlength='25'></td> 
  </tr> 
    <tr> 
    <td colspan='2'><center><input type='submit' value='Login'></center></td> 
  </tr> 
</table> 

</form>"; 
} 
echo "<center>"; 
?>

 

in one div tag

 

and

<?php include("includes/user_personal.php");?>

 

in another div tag but it keeps showing up blank

 

the code for user_personal.php looks fine to me

?????????????????????

<?php
mb_http_input("utf-8");
mb_http_output("utf-8");
session_start(); //allows session 
include "config.php"; 
if(isset($_GET['user'])) { //if there trying to view a profile 
//gets the user name and makes it safe 
$username = addslashes($_GET[user]); 
//querys the db to find the username 
$getuser = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'"); 
//checks see if the username exists in the db  

$usernum = mysql_num_rows($getuser); 
//if it don't exist  
if($usernum == 0)  
{  
//don't exist 

echo ("User Not Found");  

}  
//if it does exist then show there profile 
else{ 
$user = mysql_fetch_array($getuser);  
echo " <b>Email:</b> $user[email]<br> 
<b>Location:</b> $user[location]<br> 
<b>Sex:</b> $user[sex]<br> 
<b>Age:</b> $user[age]<br> 
<b>Classification:</b> $user[classification]<br>
<b>Graduate Class: </b>$user[graduateClass]<br>
<b>Major:</b> $user[major]<br>
<b>Minor:</b> $user[minor]<br>
<b>School:</b> $user[school]<br>
<b>Residents: </b>$user[reside]<br>
<b>Phone:</b> $user[phone]<br>
<b>AIM:</b> $user[aim]<br>
<b>MSN:</b> $user[msn]<br>
<b>MySpace.com/</b>$user[mySpace]<br>
";
}
}
?>

 

all php is not showing up on page, is there some special way of including php in div tags??

 

Here is the whole page for you to review, if anyone has any ideas why its not working or what I'm doing wrong please let me know.

Thanks in advance.

 

<?PHP session_start(); //allows session 
$_SESSION['username'] = $username;
mb_http_input("utf-8");
mb_http_output("utf-8"); ?>
<!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="Content-Type" content="text/html; charset=utf-8" />
<title>BISONBABY.COM</title>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:251px;
top:0px;
width:749px;
height:903px;
z-index:1;
background-color: #000066;
background-image: url(images/bg.png);
}
#apDiv2 {
position:absolute;
left:258px;
top:8px;
width:175px;
height:50px;
z-index:2;
visibility: visible;
background-color: #990000;
background-image: url(images/BB2.png);
}
#apDiv3 {
position:absolute;
left:432px;
top:8px;
width:562px;
height:50px;
z-index:3;
}
.style1 {
font-size: 11px;
color: #FFFFFF;
font-weight: bold;
}
a {
font-size: 11px;
color: #FFFFFF;
font-family: Geneva, Arial, Helvetica, sans-serif;
}
a:link {
text-decoration: none;
color: #000066;
}
a:visited {
text-decoration: none;
color: #0000CC;
}
a:hover {
text-decoration: underline;
color: #0000CC;
}
a:active {
text-decoration: none;
color: #000066;
}
#apDiv4 {
position:absolute;
left:257px;
top:67px;
width:738px;
height:34px;
z-index:4;
}
#apDiv5 {
position:absolute;
left:267px;
top:100px;
width:168px;
height:140px;
z-index:5;
background-color: #000067;
}
#apDiv6 {
position:absolute;
left:435px;
top:99px;
width:556px;
height:144px;
z-index:6;
}
#apDiv7 {
position:absolute;
left:257px;
top:251px;
width:153px;
height:218px;
z-index:7;
background-color: #EBEBEB;
}
-->
</style>
<style type="text/css">
<!--
p.MsoNormal {
margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
}
.style2 {color: #FFFFFF}
#apDiv8 {
position:absolute;
left:413px;
top:252px;
width:422px;
height:216px;
z-index:8;
background-color: #EBEBEB;
float: left;
}
#apDiv9 {
position:absolute;
left:413px;
top:409px;
width:422px;
height:120px;
z-index:9;
background-color: #EBEBEB;
}
#apDiv10 {
position:absolute;
left:413px;
top:532px;
width:422px;
height:120px;
z-index:10;
background-color: #EBEBEB;
}
#apDiv11 {
position:absolute;
left:413px;
top:655px;
width:422px;
height:120px;
z-index:11;
background-color: #EBEBEB;
}
#apDiv12 {
position:absolute;
left:413px;
top:739px;
width:422px;
height:120px;
z-index:12;
background-color: #EBEBEB;
}
body {
background-color: #F2F2F2;
}
#apDiv13 {
position:absolute;
left:256px;
top:868px;
width:739px;
height:30px;
z-index:13;
background-color: #000066;
}
.style5 {
color: #CCCCCC;
font-size: 10px;
font-weight: bold;
}
-->
img.floatLeft { 
    float: left; 
    margin: 4px; 
}
#apDiv14 {
position:absolute;
left:839px;
top:252px;
width:156px;
height:217px;
z-index:14;
background-color: #EBEBEB;
}
#apDiv15 {
position:absolute;
left:256px;
top:249px;
width:153px;
height:27px;
z-index:15;
background-color: #EBEBEB;
}
#apDiv16 {
position:absolute;
left:413px;
top:249px;
width:421px;
height:27px;
z-index:16;
background-color: #EBEBEB;
}
#apDiv17 {
position:absolute;
left:839px;
top:249px;
width:156px;
height:27px;
z-index:17;
background-color: #EBEBEB;
}
#apDiv18 {
position:absolute;
left:413px;
top:778px;
width:422px;
height:85px;
z-index:18;
background-color: #EBEBEB;
}
.style8 {
color: #990000;
font: bold;
}
.style9 {
color: #990000;
font: bold;
}
.style10 {
color: #990000;
font: bold;
}
#apDiv19 {
position:absolute;
left:257px;
top:473px;
width:739px;
height:388px;
z-index:18;
background-color: #EBEBEB;
}
.style11 {color: #990000}
body,td,th {
color: #990000;
}
</style>
</head>

<body>
<div id="apDiv1">
  <p> </p>
  <p align="center"> </p>
</div>
<div id="apDiv2"></div>
<div id="apDiv3">
  <div align="right"><span class="style1"><a href="login.php"><img src="images/NAV6.png" width="116" height="21" border="0" /></a> <a href="register.php"><img src="images/NAV7.png" width="116" height="21" border="0" /></a></span></div>
</div>
<div id="apDiv4"><a href="study_materials.htm"><img src="images/NAV1.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV2.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV3.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV4.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV5.png" width="116" height="21" border="0" /></a></div>
<div id="apDiv5">
  <form id="form1" name="form1" method="post" action="">
    <p>
      <select name="state" id="state">
        <option>-------SCHOOLS-------</option>
      </select>
    </p>
    <p>
      <select name="state2" id="state2">
        <option>-------STATE---------</option>
      </select>
</p>
    <h3 align="left"><a href="#"><img src="images/submit.png" width="65" height="27" border="0" /></a></h3>
  </form>
</div>
<div id="apDiv6"><a href="index.htm"><img src="images/logo.png" width="560" height="138" border="0" /></a></div>
<div id="apDiv7"><?php include("user_image.php");?></div>
<div id="apDiv8">
<br />
<?php 
include "config.php"; 
echo "<center>"; 
if($logged[id]) { 
//welcomes the member 
echo "Welcome $logged[username]<br><br>"; 
//shows the user menu 
echo " 
<a href='editprofile.php'>Edit Profile</a>
- <a href='changepassword.php'>Change Password</a>
- <a href='members.php'>Members</a>
- <a href='inbox.php'>In Box</a>
- <a href='compose.php'>Compose</a>
- <a href='logout.php?logout'>Logout</a>"; 
echo "<center>"; 
}else 
//if there trying to login 
if(isset($_GET['login'])) { 
//removes sql injections from the data 
$username= htmlspecialchars(addslashes($_POST[username]));  
//encrypts the password 
$password = sha1(md5(md5(sha1(md5(sha1(sha1(md5($_POST[password])))))))); 
//gets the username data from the members database 
$uinfo = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'") or die(mysql_error());  
//see if the user exists 
$checkuser = mysql_num_rows($uinfo); 
//if user name not found in database error 
if($checkuser == '0') 
{ 
echo "Username not found"; 
}else{ 
//fetch the sql 
$udata = mysql_fetch_array($uinfo); 
//checks see if the account is verified 
if($udata[userlevel] == 1) {  
echo "This account had not been verified."; 
} 
//if it is continue 
else 
//if the db password and the logged in password are the same login 
if($udata[password] == $password) { 
$query = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'") or die(mysql_error());  
//fetchs the sql 
$user = mysql_fetch_array($query); 
//sets the logged session 
$_SESSION['id'] = "$user[id]"; 
$_SESSION['password'] = "$user[password]"; 

echo "You are now logged in, Please wait. . ."; 
//redirects them 
echo "<meta http-equiv='Refresh' content='2; URL=login.php'/>"; 
} 
//wrong password 
else{ 
echo "Incorrect username or password!";  
} 
} 
}else{ 
//If not the above show the login form 
echo "LOGIN HERE
<form action='login.php?login' method='post'> 
<table width='312'> 
  <tr> 
    <td width='120'>Username:</td> 
    <td width='180'><input type='text' name='username' size='30' maxlength='25'></td> 
  </tr> 
  <tr> 
    <td>Password:</td> 
    <td><input type='password' name='password' size='30' maxlength='25'></td> 
  </tr> 
    <tr> 
    <td colspan='2'><center><input type='submit' value='Login'></center></td> 
  </tr> 
</table> 

</form>"; 
} 
echo "<center>"; 
?>
<br />
<br />
</div>
<div id="apDiv13">
  <div align="center" class="style5">
    <div align="right">
      <blockquote>
        <p>© BISON BABY 2008 www.bisonbaby.com</p>
      </blockquote>
    </div>
  </div>
</div>
<div id="apDiv14">
<?php include("includes/user_personal.php");?>
</div>
<div id="apDiv19"></div>
</body>
</html>

Link to comment
Share on other sites

There's nothing special about including within a div tag.

 

Do any of your includes word?  Or do they all fail?

 

I notice that you include "user_image.php" from the current directory but "user_personal.php" from the includes directory.  Is that where the scripts are stored?

Link to comment
Share on other sites

Simple version

<html>
<head>
<head>
<body>
<div id="div1" > 
<?php 
some php code.....        ///This works fine php code is showing up
?>
</div >
<div id="div2"> <?php include("includes/user_personal.php");?></div> //// NOT working nothing showing up
</body>
</html>

 

Not sure what the issue is???

If anyone has any ideas it would be a great help

 

Is it maybe having a problem with multiple connections to the database on the same user session

e.g I have in my code start session_start();  on main page than also in included file... in addition to that have a connection to the database coded into the page and also the included file.

 

It does not make sense, it should be working NO??

 

Please help!!!

Link to comment
Share on other sites

Try including a different file that does something simple, like an echo.  If that works, then it's something that your specific included script is doing.  And it could be the multiple session_start() or database connections.  You can try commenting out pieces of code until you find what is the problem.

Link to comment
Share on other sites

I have some php that is hard coded into the page and in addition I want to also include many other php files inside different div tags

 

e.g.

 

<html>
<head>
<head>
<body>
<div id="div1" > 
<?php 
some php code.....        ///This works fine php code is showing up
?>
</div >
<div id="div2"> <?php include("includes/user_personal.php");?></div> //// NOT working nothing showing up
<div id="div3"> <?php include("includes/user_description.php");?></div> //// NOT working nothing showing up
<div id="div4"> <?php include("includes/user_image.php");?></div> //// NOT working nothing showing up
</body>
</html>

Link to comment
Share on other sites

I have done that and can't seem to find any problem, I'm not getting any php errors

 

e.g. I ran all the my files that I want to include in the div tags outside the html page and they all work fine,

I even tried hard coding the files I want to include into the div tags and they still are showing up blank.

I removed the start session on all external files and still blank, nothing is showing up.

 

lol

should this not work together??

<html>
<head>
<head>
<body>
<div id="div1" > 
<?php 
some php code.....        ///This works fine php code is showing up
?>
</div >
<div id="div2"> <?php include("includes/user_personal.php");?></div> //// NOT working nothing showing up
<div id="div3"> <?php include("includes/user_description.php");?></div> //// NOT working nothing showing up
<div id="div4"> <?php include("includes/user_image.php");?></div> //// NOT working nothing showing up
</body>
</html> 

 

here is the real page I'm tryin to use

 

<?php
session_start(); //allows session 
$_SESSION['username'] = $username;
mb_http_input("utf-8");
mb_http_output("utf-8"); 
?>
<!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="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div id="apDiv1">
  <p> </p>
  <p align="center"> </p>
</div>
<div id="apDiv2"></div>
<div id="apDiv3">
  <div align="right"><span class="style1"><a href="login.php"><img src="images/NAV6.png" width="116" height="21" border="0" /></a> <a href="register.php"><img src="images/NAV7.png" width="116" height="21" border="0" /></a></span></div>
</div>
<div id="apDiv4"><a href="study_materials.htm"><img src="images/NAV1.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV2.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV3.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV4.png" width="116" height="21" border="0" /></a> <a href="#"><img src="images/NAV5.png" width="116" height="21" border="0" /></a></div>
<div id="apDiv5">
  <form id="form1" name="form1" method="post" action="">
    <p>
      <select name="state" id="state">
        <option>-------SCHOOLS-------</option>
      </select>
    </p>
    <p>
      <select name="state2" id="state2">
        <option>-------STATE---------</option>
      </select>
</p>
    <h3 align="left"><a href="#"><img src="images/submit.png" width="65" height="27" border="0" /></a></h3>
  </form>
</div>
<div id="apDiv6"><a href="index.htm"><img src="images/logo.png" width="560" height="138" border="0" /></a></div>
<div id="apDiv7">

<?php include("user_image.php");?></div>      //// NOT working nothing showing up

<div id="apDiv8">
<br />

<?php                        //// THIS code is working fine
include "config.php"; 
echo "<center>"; 
if($logged[id]) { 
//welcomes the member 
echo "Welcome $logged[username]<br><br>"; 
//shows the user menu 
echo " 
<a href='editprofile.php'>Edit Profile</a>
- <a href='changepassword.php'>Change Password</a>
- <a href='members.php'>Members</a>
- <a href='inbox.php'>In Box</a>
- <a href='compose.php'>Compose</a>
- <a href='logout.php?logout'>Logout</a>"; 
echo "<center>"; 
}else 
//if there trying to login 
if(isset($_GET['login'])) { 
//removes sql injections from the data 
$username= htmlspecialchars(addslashes($_POST[username]));  
//encrypts the password 
$password = sha1(md5(md5(sha1(md5(sha1(sha1(md5($_POST[password])))))))); 
//gets the username data from the members database 
$uinfo = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'") or die(mysql_error());  
//see if the user exists 
$checkuser = mysql_num_rows($uinfo); 
//if user name not found in database error 
if($checkuser == '0') 
{ 
echo "Username not found"; 
}else{ 
//fetch the sql 
$udata = mysql_fetch_array($uinfo); 
//checks see if the account is verified 
if($udata[userlevel] == 1) {  
echo "This account had not been verified."; 
} 
//if it is continue 
else 
//if the db password and the logged in password are the same login 
if($udata[password] == $password) { 
$query = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'") or die(mysql_error());  
//fetchs the sql 
$user = mysql_fetch_array($query); 
//sets the logged session 
$_SESSION['id'] = "$user[id]"; 
$_SESSION['password'] = "$user[password]"; 

echo "You are now logged in, Please wait. . ."; 
//redirects them 
echo "<meta http-equiv='Refresh' content='2; URL=login.php'/>"; 
} 
//wrong password 
else{ 
echo "Incorrect username or password!";  
} 
} 
}else{ 
//If not the above show the login form 
echo "LOGIN HERE
<form action='login.php?login' method='post'> 
<table width='312'> 
  <tr> 
    <td width='120'>Username:</td> 
    <td width='180'><input type='text' name='username' size='30' maxlength='25'></td> 
  </tr> 
  <tr> 
    <td>Password:</td> 
    <td><input type='password' name='password' size='30' maxlength='25'></td> 
  </tr> 
    <tr> 
    <td colspan='2'><center><input type='submit' value='Login'></center></td> 
  </tr> 
</table> 

</form>"; 
} 
echo "<center>"; 
?>
<br />
<br />

<?php include("includes/user_description.php");?>     //// NOT working nothing showing up

</div>
<div id="apDiv13">
  <div align="center" class="style5">
    <div align="right">
      <blockquote>
        <p>© </p>
      </blockquote>
    </div>
  </div>
</div>
<div id="apDiv14">

<?php include("includes/user_personal.php");?>  //// NOT working nothing showing up

</div>
<div id="apDiv19"></div>
</body>
</html>

Link to comment
Share on other sites

You are right, I tried to include echo and it worked fine lol

I'm not sure what the deal is

 

have a look at the code i'm tryin to include, it works fine on its own and I have also included it into another page and it works,

this is just crazy.

 

user_description.php

 

<?php
include "config.php"; 
if(isset($_GET['user'])) { //if there trying to view a profile 
//gets the user name and makes it safe 
$username = addslashes($_GET[user]); 
//querys the db to find the username 
$getuser = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'"); 
//checks see if the username exists in the db  
$usernum = mysql_num_rows($getuser); 
//if it don't exist  
if($usernum == 0)  
{  
//don't exist 

echo ("User Not Found");  

}  
//if it does exist then show there profile 
else{ 
$user = mysql_fetch_array($getuser);  
echo " 
<b>$user[username]'s Profile</b><br><br> 
$user[userDescription]<br>
";
}
}
?>

 

user_image.php

 

<?php
include("config.php");
echo "<center>"; 
if(isset($_GET['user'])) { //if there trying to view a profile 
//gets the user name and makes it safe 
$username = addslashes($_GET[user]); 
//querys the db to find the username 
$getuser = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'"); 
//checks see if the username exists in the db  

$usernum = mysql_num_rows($getuser); 
//if it don't exist  
if($usernum == 0)  
{  
//don't exist 

echo ("User Not Found");  

}  
//if it does exist then show there profile 
else{ 
$user = mysql_fetch_array($getuser);  
$img = $user[name];
echo " 
" . "<img src='/upload/" . $img . "'> <br>
";
}
}
?>

 

user_personal.php

 

<?php
session_start();
include("config.php");
if(isset($_GET['user'])) { //if there trying to view a profile 
//gets the user name and makes it safe 
$username = addslashes($_GET[user]); 
//querys the db to find the username 
$getuser = mysql_query("SELECT * FROM `users` WHERE `username` = '$username'"); 
//checks see if the username exists in the db  
$usernum = mysql_num_rows($getuser); 
//if it don't exist  
if($usernum == 0)  
{  
//don't exist 
echo ("User Not Found");  
}  
//if it does exist then show there profile 
else{ 
$user = mysql_fetch_array($getuser);  
echo " <b>Email:</b> $user[email]<br> 
<b>Location:</b> $user[location]<br> 
<b>Sex:</b> $user[sex]<br> 
<b>Age:</b> $user[age]<br> 
<b>Classification:</b> $user[classification]<br>
<b>Graduate Class: </b>$user[graduateClass]<br>
<b>Major:</b> $user[major]<br>
<b>Minor:</b> $user[minor]<br>
<b>School:</b> $user[school]<br>
<b>Residents: </b>$user[reside]<br>
<b>Phone:</b> $user[phone]<br>
<b>AIM:</b> $user[aim]<br>
<b>MSN:</b> $user[msn]<br>
<b>MySpace.com/</b>$user[mySpace]<br>
";
}
}
?>

Can anyone see why I am having this issue???

 

Sorry for all the code, I just don't know how else to get the help I need.

Thanks in advance!!

Link to comment
Share on other sites

I'm still seeing that some of your included files are in the "includes" folder, but others are not.  This is likely to cause trouble.

 

It's also likely to be a problem that config.php is included from each file.  You can replace it with this:

 

require_once('include.php');

 

That will include the file once only, no matter how many times it is run from different places.  It will also stop the script if the file cannot be found ("include" will continue on failure, but "require" will stop).  It's very rare that you actually want your script to continue running if it can't find an included file.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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