[Pawn] Sending message to all owner of key (from SQL) - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] Sending message to all owner of key (from SQL) (/showthread.php?tid=1890) |
Sending message to all owner of key (from SQL) - Axitz - 2021-04-16 Hi, How do I make something like sending message to all key's holder from sql function? example like : PHP Code: mysql_format(sqldata, pQuery, sizeof pQuery, "SELECT doorkey FROM `bizkeys` WHERE bizid = %d;", bizid); or something. RE: Sending message to all owner of key (from SQL) - Radical - 2021-04-17 Code: mysql_format(sqldata, pQuery, sizeof pQuery, "SELECT holdername, doorkey FROM `bizkeys` WHERE bizid = %d;", bizid); |