Exists a way with mysqli_query PHP to run two queries at the same time?
Budget: $10 – $15 USD
Exists a way with mysqli_query PHP to run two queries at the same time? What i want is to (INSERT INTO) in two differents tables at the same time, i CAN'T USE multi_query.
If i run this code in mysqli_query
INSERT INTO `users` (`username`,`password`) VALUES ('dfree','mdkroei')'; INSERT INTO `store` (`username`,`owner_id`) VALUES ('blabla', '1');
It only runs the first INSERT INTO. I know that using multi_query this problem will be solved, but in this time i can't. So, Exists a way with mysqli_query PHP to run two queries (INSERT INTO) at the same time?
If i run this code in mysqli_query
INSERT INTO `users` (`username`,`password`) VALUES ('dfree','mdkroei')'; INSERT INTO `store` (`username`,`owner_id`) VALUES ('blabla', '1');
It only runs the first INSERT INTO. I know that using multi_query this problem will be solved, but in this time i can't. So, Exists a way with mysqli_query PHP to run two queries (INSERT INTO) at the same time?