Jump to content

Recommended Posts

Can anyone help me figure out why my query is only returning one result when there are several in my table? What code must I add in order for the query to return all the records in the table? Here is my query:

 

//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());

if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

//display stats
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>$defect_id $desc</td>
<td>$bp BP</td></tr>
</table>";

}

Link to comment
https://forums.phpfreaks.com/topic/125218-solved-query-only-returning-one-result/
Share on other sites

<?
//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());

if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

while ($a = mysql_fetch_array($get_defects_res)) {
//  YOU CAN USE          $a['COLUMN NAME'];      TO ECHO VALUES FROM DB IN THIS LOOP * TILL WHILE ENDS * HIHIH  
//display stats
$display_block = "

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>$defect_id $desc</td>
<td>$bp BP</td></tr>
</table>";

}
}
?>

 

this should help

 

 

//edit

 

you can use $a like

 

$a['desc'] this will echo $desc value and so on ;)  :P

i gaved you an example :P

at least you could change the variables

 

from

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>$defect_id $desc</td>
<td>$bp BP</td></tr>
</table>";

 

 

with

 


<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>$a['defect_id'] $a['desc']</td>
<td>$a['bp'] BP</td></tr>
</table>";

 

::)

ups  ;D

 

 

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>".$a['defect_id']." ".$a['desc']."</td>
<td>".$a['bp']." BP</td></tr>
</table>";

 

that should work 100%

Hold on. I did it with the " and it seems to be working, except it is repeating one line it doesn't need to: Character Defects. Here is the code. See if you can tell me how to move that line so it won't keep repeating:

 

<?php
//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());

if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

while ($a = mysql_fetch_array($get_defects_res)) {

//display stats
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>".$a['defect_id']." ".$a['desc']."</td>
<td>".$a['bp']." BP</td></tr>
</table>";

}
}

?>

the table is looping :P

 

this should fix the problem

 


<?php
//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());

if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

$display_block .= "<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>";
while ($a = mysql_fetch_array($get_defects_res)) {

//display stats
$display_block .= "
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>".$a['defect_id']." ".$a['desc']."</td>
<td>".$a['bp']." BP</td></tr>";

}
$display_block .= "</table>";
}

?>

 

so i won a special prize? :P

Is this what you meant?

 

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Attack Restriction (Loved Ones)</td>
<td>2 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Attack Words </td>
<td>2 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Awkward </td>
<td>1 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Easily Distracted (Food, Cute Guys, Video Games)</td>
<td>2 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Empty Mind </td>
<td>1 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Item Dependency (Sailor Scout Attacks)</td>
<td>2 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Item Dependency (Transformation)</td>
<td>1 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Phobia </td>
<td>1 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Powered After Transformation </td>
<td>2 BP</td></tr>
</table>

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>Transformation Loss </td>
<td>1 BP</td></tr>
</table>

 

Source code from browser.

check with this if it work

 

<?php
//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());
$display_block = "<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>";
if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

while ($a = mysql_fetch_array($get_defects_res)) {

//display stats
$display_block .= "
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>".$a['defect_id']." ".$a['desc']."</td>
<td>".$a['bp']." BP</td></tr>";

}
}
$display_block .= "</table>";
?>

Here is the entire code:

 

<?php
//connect to database
$conn = mysql_connect("localhost", "root", "")
or die(mysql_error());
mysql_select_db("smrpg",$conn) or die(mysql_error());

//validate profile
$get_profile = "select * from scout where id = $_GET[id]";

$get_profile_res = mysql_query($get_profile) or die (mysql_error());

if (mysql_num_rows($get_profile_res) < 1) {
//invalid profile
$display_block .= "<p><em>Invalid item selection.</em></p>";
} else {
//valid profile, get info
$identity = (stripslashes(
mysql_result($get_profile_res,0,'identity')));
$charactername = stripslashes(mysql_result($get_profile_res,0,'charactername'));
$elementofinfluence = mysql_result($get_profile_res,0,'elementofinfluence');
$age = stripslashes(mysql_result($get_profile_res,0,'age'));
$birthdatemonth = (mysql_result($get_profile_res,0,'birthdatemonth'));
$birthdateday = (mysql_result($get_profile_res,0,'birthdateday'));
$birthdateyear = (mysql_result($get_profile_res,0,'birthdateyear'));
$heightfeet = (mysql_result($get_profile_res,0,'heightfeet'));
$heightinches = (mysql_result($get_profile_res,0,'heightinches'));
$bloodtype = (mysql_result($get_profile_res,0,'bloodtype'));
$hobbies = (mysql_result($get_profile_res,0,'hobbies'));
$favoritecolor = (mysql_result($get_profile_res,0,'favoritecolor'));
$favoritegemstone = (mysql_result($get_profile_res,0,'favoritegemstone'));
$favoritefood = (mysql_result($get_profile_res,0,'favoritefood'));
$leastfavoritefood = (mysql_result($get_profile_res,0,'leastfavoritefood'));
$favoriteschoolsubject = (mysql_result($get_profile_res,0,'favoriteschoolsubject'));
$leastfavoriteschoolsubject = (mysql_result($get_profile_res,0,'leastfavoriteschoolsubject'));
$strengths = (mysql_result($get_profile_res,0,'strengths'));
$weaknesses = (mysql_result($get_profile_res,0,'weaknesses'));
$goal = (mysql_result($get_profile_res,0,'goal'));
$biography = (mysql_result($get_profile_res,0,'biography'));

$display_block = "<h1><center>$identity</center></h1>";

//display profile
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='100%'>
<tr>
<td width='25%'><strong>Character Name:</strong></td>
<td>$charactername</td></tr>
<tr>
<td><strong>Element Of Influence:</strong></td>
<td>$elementofinfluence</td></tr>
<tr>
<td><strong>Age:</strong></td>
<td>$age</td></tr>
<tr>
<td><strong>Birthdate:</strong></td>
<td>$birthdatemonth $birthdateday, $birthdateyear</td></tr>
<tr>
<td><strong>Height:</strong></td>
<td>$heightfeet' $heightinches&#34;</td></tr>
<tr>
<td><strong>Blood Type:</strong></td>
<td>$bloodtype</td></tr>
<tr>
<td><strong>Hobbies:</strong></td>
<td>$hobbies</td></tr>
<tr>
<td><strong>Favorite Color:</strong></td>
<td>$favoritecolor</td></tr>
<tr>
<td><strong>Favorite Gemstone:</strong></td>
<td>$favoritegemstone</td></tr>
<tr>
<td><strong>Favorite Food:</strong></td>
<td>$favoritefood</td></tr>
<td><strong>Least Favorite Food:</strong></td>
<td>$leastfavoritefood</td></tr>
<tr>
<td><strong>Favorite School Subject:</strong></td>
<td>$favoriteschoolsubject</td></tr>
<tr>
<td><strong>Least Favorite School Subject:</strong></td>
<td>$leastfavoriteschoolsubject</td></tr>
<tr>
<td><strong>Strengths:</strong></td>
<td>$strengths</td></tr>
<tr>
<td><strong>Weaknesses:</strong></td>
<td>$weaknesses</td></tr>
<tr>
<td><strong>Goal:</strong></td>
<td>$goal...</td></tr>";

$display_block .= "
</td>
</tr>
</table>

<p>$biography</p>";

}

//validate stats
$get_stats = "SELECT * FROM stats INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id]";

$get_stats_res = mysql_query($get_stats) or die (mysql_error());

if (mysql_num_rows($get_stats_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$body = stripslashes(mysql_result($get_stats_res,0,'body'));
$mind = mysql_result($get_stats_res,0,'mind');
$soul = stripslashes(mysql_result($get_stats_res,0,'soul'));
$health = (mysql_result($get_stats_res,0,'health'));
$energy = (mysql_result($get_stats_res,0,'energy'));
$acv = (mysql_result($get_stats_res,0,'acv'));
$acv_sa = (mysql_result($get_stats_res,0,'acv_sa'));
$dcv = (mysql_result($get_stats_res,0,'dcv'));
$dcv_sa = (mysql_result($get_stats_res,0,'dcv_sa'));
$tcp = (mysql_result($get_stats_res,0,'tcp'));

//display stats
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Stats And Derived Values</td></tr>
<tr>
<td><strong>Body:</strong></td>
<td>$body</td></tr>
<tr>
<td><strong>Mind:</strong></td>
<td>$mind</td></tr>
<tr>
<td><strong>Soul:</strong></td>
<td>$soul</td></tr>
<tr>
<td><strong>Health:</strong></td>
<td>$health</td></tr>
<tr>
<td><strong>Energy:</strong></td>
<td>$energy</td></tr>
<tr>
<td><strong>Attack Combat Value:</strong></td>
<td>$acv</td>
<td>$acv_sa (for Sailor Scout Attack)</td></tr>
<tr>
<td><strong>Defense Combat Value:</strong></td>
<td>$dcv</td>
<td>$dcv_sa (for Sailor Scout Attack)</td></tr>
<tr>
<td><strong>Total Character Points:</strong></td>
<td>$tcp</td></tr></table>";

}

//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());

if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

while ($a = mysql_fetch_array($get_defects_res)) {

//display stats
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>".$a['defect_id']." ".$a['desc']."</td>
<td>".$a['bp']." BP</td></tr>
</table>";

}
}

?>
<html>
<head>
<title>Profile - <?php print $identity ?></title>
<link rel="stylesheet" type="text/css" href="simpletree2.css" />
</head>
<body>
<?php print $display_block; ?>
</body>
</html>

now it should work ^_^ impossible to not  :o

 

<?php
//connect to database
$conn = mysql_connect("localhost", "root", "")
or die(mysql_error());
mysql_select_db("smrpg",$conn) or die(mysql_error());

//validate profile
$get_profile = "select * from scout where id = $_GET[id]";

$get_profile_res = mysql_query($get_profile) or die (mysql_error());

if (mysql_num_rows($get_profile_res) < 1) {
//invalid profile
$display_block .= "<p><em>Invalid item selection.</em></p>";
} else {
//valid profile, get info
$identity = (stripslashes(
mysql_result($get_profile_res,0,'identity')));
$charactername = stripslashes(mysql_result($get_profile_res,0,'charactername'));
$elementofinfluence = mysql_result($get_profile_res,0,'elementofinfluence');
$age = stripslashes(mysql_result($get_profile_res,0,'age'));
$birthdatemonth = (mysql_result($get_profile_res,0,'birthdatemonth'));
$birthdateday = (mysql_result($get_profile_res,0,'birthdateday'));
$birthdateyear = (mysql_result($get_profile_res,0,'birthdateyear'));
$heightfeet = (mysql_result($get_profile_res,0,'heightfeet'));
$heightinches = (mysql_result($get_profile_res,0,'heightinches'));
$bloodtype = (mysql_result($get_profile_res,0,'bloodtype'));
$hobbies = (mysql_result($get_profile_res,0,'hobbies'));
$favoritecolor = (mysql_result($get_profile_res,0,'favoritecolor'));
$favoritegemstone = (mysql_result($get_profile_res,0,'favoritegemstone'));
$favoritefood = (mysql_result($get_profile_res,0,'favoritefood'));
$leastfavoritefood = (mysql_result($get_profile_res,0,'leastfavoritefood'));
$favoriteschoolsubject = (mysql_result($get_profile_res,0,'favoriteschoolsubject'));
$leastfavoriteschoolsubject = (mysql_result($get_profile_res,0,'leastfavoriteschoolsubject'));
$strengths = (mysql_result($get_profile_res,0,'strengths'));
$weaknesses = (mysql_result($get_profile_res,0,'weaknesses'));
$goal = (mysql_result($get_profile_res,0,'goal'));
$biography = (mysql_result($get_profile_res,0,'biography'));

$display_block = "<h1><center>$identity</center></h1>";

//display profile
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='100%'>
<tr>
<td width='25%'><strong>Character Name:</strong></td>
<td>$charactername</td></tr>
<tr>
<td><strong>Element Of Influence:</strong></td>
<td>$elementofinfluence</td></tr>
<tr>
<td><strong>Age:</strong></td>
<td>$age</td></tr>
<tr>
<td><strong>Birthdate:</strong></td>
<td>$birthdatemonth $birthdateday, $birthdateyear</td></tr>
<tr>
<td><strong>Height:</strong></td>
<td>$heightfeet' $heightinches&#38;#34;</td></tr>
<tr>
<td><strong>Blood Type:</strong></td>
<td>$bloodtype</td></tr>
<tr>
<td><strong>Hobbies:</strong></td>
<td>$hobbies</td></tr>
<tr>
<td><strong>Favorite Color:</strong></td>
<td>$favoritecolor</td></tr>
<tr>
<td><strong>Favorite Gemstone:</strong></td>
<td>$favoritegemstone</td></tr>
<tr>
<td><strong>Favorite Food:</strong></td>
<td>$favoritefood</td></tr>
<td><strong>Least Favorite Food:</strong></td>
<td>$leastfavoritefood</td></tr>
<tr>
<td><strong>Favorite School Subject:</strong></td>
<td>$favoriteschoolsubject</td></tr>
<tr>
<td><strong>Least Favorite School Subject:</strong></td>
<td>$leastfavoriteschoolsubject</td></tr>
<tr>
<td><strong>Strengths:</strong></td>
<td>$strengths</td></tr>
<tr>
<td><strong>Weaknesses:</strong></td>
<td>$weaknesses</td></tr>
<tr>
<td><strong>Goal:</strong></td>
<td>$goal...</td></tr>";

$display_block .= "
</td>
</tr>
</table>

<p>$biography</p>";

}

//validate stats
$get_stats = "SELECT * FROM stats INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id]";

$get_stats_res = mysql_query($get_stats) or die (mysql_error());

if (mysql_num_rows($get_stats_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$body = stripslashes(mysql_result($get_stats_res,0,'body'));
$mind = mysql_result($get_stats_res,0,'mind');
$soul = stripslashes(mysql_result($get_stats_res,0,'soul'));
$health = (mysql_result($get_stats_res,0,'health'));
$energy = (mysql_result($get_stats_res,0,'energy'));
$acv = (mysql_result($get_stats_res,0,'acv'));
$acv_sa = (mysql_result($get_stats_res,0,'acv_sa'));
$dcv = (mysql_result($get_stats_res,0,'dcv'));
$dcv_sa = (mysql_result($get_stats_res,0,'dcv_sa'));
$tcp = (mysql_result($get_stats_res,0,'tcp'));

//display stats
$display_block .= "

<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<tr>
<tr><td colspan='3' id='th'>Stats And Derived Values</td></tr>
<tr>
<td><strong>Body:</strong></td>
<td>$body</td></tr>
<tr>
<td><strong>Mind:</strong></td>
<td>$mind</td></tr>
<tr>
<td><strong>Soul:</strong></td>
<td>$soul</td></tr>
<tr>
<td><strong>Health:</strong></td>
<td>$health</td></tr>
<tr>
<td><strong>Energy:</strong></td>
<td>$energy</td></tr>
<tr>
<td><strong>Attack Combat Value:</strong></td>
<td>$acv</td>
<td>$acv_sa (for Sailor Scout Attack)</td></tr>
<tr>
<td><strong>Defense Combat Value:</strong></td>
<td>$dcv</td>
<td>$dcv_sa (for Sailor Scout Attack)</td></tr>
<tr>
<td><strong>Total Character Points:</strong></td>
<td>$tcp</td></tr></table>";

}

//validate defects
$get_defects = "SELECT * FROM character_defects INNER JOIN scout USING (identity) WHERE scout.id = $_GET[id] ORDER BY defect_id ASC";

$get_defects_res = mysql_query($get_defects) or die (mysql_error());

if (mysql_num_rows($get_defects_res) < 1) {
//invalid table
$display_block .= "<p><em>Invalid table selection.</em></p>";
} else {
//valid table, get info
$defect_id = stripslashes(mysql_result($get_defects_res,0,'defect_id'));
$desc = mysql_result($get_defects_res,0,'desc');
$bp = stripslashes(mysql_result($get_defects_res,0,'bp'));

while ($a = mysql_fetch_array($get_defects_res)) {

//display stats
$display_block .= "
<tr>
<tr><td colspan='3' id='th'>Character Defects</td></tr>
<tr>
<td>".$a['defect_id']." ".$a['desc']."</td>
<td>".$a['bp']." BP</td></tr>";

}
}

?>
<html>
<head>
<title>Profile - <?php print $identity ?></title>
<link rel="stylesheet" type="text/css" href="simpletree2.css" />
</head>
<body>
<table cellpadding=3 cellspacing=3 border='0' width='40%' id='stats'>
<?php print $display_block; ?>
</table>
</body>
</html>

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.