include 'connect.php'; ?>
/* CREATE TABLE IF NOT EXISTS `tooltip` ( `id` int(5) NOT NULL auto_increment, `keyword` varchar(255) NOT NULL, `definition` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; */ $result = ' Oxycodone is an opioid analgesic medication synthesized from opium-derived thebaine. It was developed in 1916 in Germany, as one of several new semi-synthetic opioids in an attempt to improve on the existing opiates and opioids: morphine, diacetylmorphine (heroin), and codeine.[2] Currently it is formulated as single ingredient products or compounded products. Some common examples of compounding are oxycodone with acetaminophen or NSAIDs such as ibuprofen. The formulations are available as generics but are also made under various brand names. OxyContin is Purdue Pharma\'s brand for time-release single-ingredient oxycodone oral medication. The manufacturing rights to generic oxycodone time-release is under dispute.'; $sql = mysql_query("select * from tooltip"); while ($row = mysql_fetch_array($sql)) { $id = $row[0]; $keyword = $row[1]; $definition = $row[2]; $newlink = ''.$keyword.''; $result = str_replace($keyword,$newlink,$result); } echo $result; ?>