// example 1
$confirm=$this->video->videoupdate('any values');
if($confirm)
{
echo "window.location='index';";
}
// example 2
$this->video->videoupdate('any values');
echo "window.location='index';";
Your videoupdate method will return a value. Generally you return true or false, but can also return data. In example one you are assigning the result of the statement to $confirm.
if $confirm is true then the condition will be executed. Note that unless $confirm is explicitly set to false, any value will evaluate to true, so the condition will always be true.
A better option would be to do:
if($confirm==true)
{
// redirect
}
else
{
// something else has happened
}
This logic can be used to control the flow of an application in the result of an error, for instance, or the failure of a query.
In the second example, the echo statement will occur regardless of outcome, which may be intended, but could result in unexpected behaviour - was the query successful or not at that point in the script.