Hallo ich habe eine Variable $index2;
$result=mysql_query("Select ps.*, p.* FROM project_spec ps, project p
WHERE ps.country='$country' and ps.icd_id='$icd_id' and
ps.speciality_id='$speciality_id' and ps.project_id=p.project_id");
while ($inhalt=mysql_fetch_array($result)){
$index2 = htmlspecialchars($inhalt[$index]);
echo $index2;
}
echo "<td bgcolor='#E6E6E6'><strong>Highest Index ($ausgabe) </strong></td>
<td align='right' bgcolor='#E6E6E6'><strong>max($index2)</strong></td>
Der Wert $index kann mehrere Werte enthalten, z.B. 10050, dass sind 100 und 50 aus 2 DS, wie kann ich die trennen und wie bekomme, ich dann den höchst Wert von $index2 ?
$result=mysql_query("Select ps.*, p.* FROM project_spec ps, project p
WHERE ps.country='$country' and ps.icd_id='$icd_id' and
ps.speciality_id='$speciality_id' and ps.project_id=p.project_id");
while ($inhalt=mysql_fetch_array($result)){
$index2 = htmlspecialchars($inhalt[$index]);
echo $index2;
}
echo "<td bgcolor='#E6E6E6'><strong>Highest Index ($ausgabe) </strong></td>
<td align='right' bgcolor='#E6E6E6'><strong>max($index2)</strong></td>
Der Wert $index kann mehrere Werte enthalten, z.B. 10050, dass sind 100 und 50 aus 2 DS, wie kann ich die trennen und wie bekomme, ich dann den höchst Wert von $index2 ?
Kommentar