I'm trying to make a class that will execute any one of a number of stored procedures with any amount of variables
Im using php and mysqli
- My class enumerates an array and constructs a string based on the number of elements if any
- giving something like this
CALL spTestLogin(?,?)
for example I now need to bind the input from my array using somethin like this:
$stmt->bind_param($this->paramTypes,$this->paramValues);//paramValues is my array
Then if that works I can work on getting my results
Any ideas