Hey guys,
I’m using this query:
[php]$query=“UPDATE frontlin_manager
.options
SET ques_id
= ‘$period’”;[/php]
But, I also need to update another table in the same query:
[php]UPDATE frontlin_manager
.questions
SET id
= ‘$period’[/php]
Is this possible?
Thanks!!