12-03-2016, 09:31 PM
Hey!
I am using the UserSpice pages in many ways, and one of them is a migration tool. Basically, I have a list of categories, and if I migrate the category number to be another number, I also want to update all of the templates with that category number, to the new one. Currently, I am using the default function from the page that I just modified to my good, and I have this:
<pre></pre>
But what I need to do is also update the table the new I have set.
If you could help with the function for this, I would be VERY appreciative
Thanks again!
I am using the UserSpice pages in many ways, and one of them is a migration tool. Basically, I have a list of categories, and if I migrate the category number to be another number, I also want to update all of the templates with that category number, to the new one. Currently, I am using the default function from the
Code:
admin_user.php
<pre>
Code:
//Update catnum
if ($number != $_POST['number']){
$number = Input::get("number");
$fields=array('number'=>$number);
$validation->check($_POST,array(
'number' => array(
'display' => 'Number',
'required' => true,
'min' => 1,
'max' => 3
)
));
if($validation->passed()){
$db->update('categories',$id,$fields);
$successes[] = "Sort Updated";
But what I need to do is also update the
Code:
templates
Code:
WHERE category=
Code:
$number
If you could help with the
Code:
$db->
Thanks again!