Well, for starters, stop using the old deprecated mysql_*.
I'm not going to show you how to do what you want with mysql_* because I don't want to. In PDO, you would do:
$db = new PDO( 'mysql:host=dbHost;dbName=yourDBName;' , 'user' , 'pass' );
try
{
$st = $db->prepare("CALL dodaj_osobe (pesel:,imie:,nazwisko:,telefon:,adres:,nr_konta:,zarobek:)");
$st->bindValue( 'pesel:' , $pesel , PDO::PARAM_dataType );
$st->bindValue( 'imie:' , $imie , PDO::PARAM_dataType );
$st->bindValue( 'nazwisko:' , $nazwisko , PDO::PARAM_dataType );
$st->bindValue( 'telefon:' , $telefon , PDO::PARAM_dataType );
$st->bindValue( 'adres:' , $adres , PDO::PARAM_dataType );
$st->bindValue( 'nr_konta:' , $nr_konta , PDO::PARAM_dataType );
$st->bindValue( 'zarobek:' , $zarobek , PDO::PARAM_dataType );
$st->execute();
}
catch( PDOException $qEx )
{
//the query wasn't successful..
//deal with it
}
Replace all PDO::PARAM_dataType with whatever data type the var for the named place holder is. So for example, if $pesel is a string, replace $st->bindValue( 'pesel:' , $pesel , PDO::PARAM_dataType ); with $st->bindValue( 'pesel:' , $pesel , PDO::PARAM_STR );. Notice the PARAM_STR?..
If the OOP approach confuses you, use MySQLi as it supports the procedural approach.
mysql_queryfunction returns. Also, you'll note, that mysql_* is being deprecated - you should switch to mysqli_ or PDO. – user985189 Jan 7 at 15:57