Alright, I have the following code:
<?
require_once("db.php");
$bitemname = $_GET['itemnamec'];
$bitemstr = $_GET['itemstrc'];
$bitemend = $_GET['itemendc'];
$bitemagi = $_GET['itemagic'];
$bitemint = $_GET['itemintc'];
$bitemwis = $_GET['itemwisc'];
$bitematt = $_GET['itemattc'];
$bitembonus = $_GET['itembonusc'];
$bitemmindamage = $_GET['itemmindamagec'];
$bitemmaxdamage = $_GET['itemmaxdamagec'];
$bitemenc = $_GET['itemencc'];
$bitemget = $_GET['itemgetc'];
$bitemsell = $_GET['itemsellc'];
$adduser = ("INSERT INTO `items_melee_weapons` (`itemname`, `itemstr`, `itemend`, `itemagi`, `itemint`, `itemwis`, `itematt`, `itembonus`, `itemmindamage`, `itemmaxdamage`, `itemenc`, `itemget`, `itemsell`) VALUES (`$bitemname`, `$bitemstr`, `$bitemend`, `$bitemagi`, `$bitemint`, `$bitemwis`, `$bitematt`, `$bitembonus`, `$bitemmindamage`, `$bitemmaxdamage`, `$bitemenc`, `$bitemget`, `$bitemsell`)");
mysql_query($adduser) OR die(mysql_error());
?>
b
And I'm trying to enter strings with HTML bits in them, such as:
<a href="viewitem.html" title="View The Stats" style="text-decoration: none; color:
Or
<font color="#FF0000">Item Name</font>
Why do I get this error? I can't figure it out. -.-