Stored Procedure in PHP ausführen

Hallo,

ich habe mit MySQl eine stored procedure mit 2 Inputparamtern (Text, Zahl) und einem Outputparameter (Zahl) erstellt.
Wie rufe ich den diese Prozedur auf und wie kann ich den Outputparameter auswerten?

Danke im voraus.

EPa

ist erledigt, habs nach langer Recherche gefunden
für die, die es auch interessiert:

<?php $link = mysqli_connect("localhost", "root", "", "db");
/\* check connection \*/ if (mysqli\_connect\_errno()) { printf("Connect failed: %s\n", mysqli\_connect\_error()); exit(); } $query = "CALL prozname1 ('".$stringparam."', ".$intparamt.",@outputparam); Select @outputparam"; if (mysqli\_multi\_query($link, $query)) { do { if ($result = mysqli\_store\_result($link)) { while ($row = mysqli\_fetch\_row($result)) {printf("%s\n", $row[0]);} mysqli\_free\_result($result); } if (mysqli\_more\_results($link)) { printf("-----------------naechste Abfrage\n");} } while (mysqli\_next\_result($link)); } mysqli\_close($link); ?\> > [Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]