root / src / pl_features.TSP.php @ a9b72d88
Historique | Voir | Annoter | Télécharger (370 octet)
1 |
<?php
|
---|---|
2 |
require_once("lib/seq.lib.php"); |
3 |
// a Trigger to display plsmid map image
|
4 |
$all = $this->myQuery("SELECT * FROM " . $this->tb . " WHERE id=" . $this->rec); |
5 |
// reach the plasmid displayed
|
6 |
$obj = mysql_fetch_object($all); |
7 |
if ($obj) { |
8 |
// display image
|
9 |
if ($obj->Sequence) { |
10 |
echo '<textarea readonly rows="10" cols="100">'.$obj->Sequence.'</textarea>'; |
11 |
} |
12 |
} |
13 |
|
14 |
?>
|