Ciao,
non capisco perchè il seguente codice non mi cambia il valore di catid all'id #110:
<?php
$hostname = 'host.com';
$username = 'user';
$password = 'password';
$dbname = 'dbname';
$categoryid = '17';
$itemid = '110';
$db = new PDO("mysql:host=$hostname;dbname=$database",$username,$password);
$update_stmt = $db->prepare('
UPDATE
#__content
SET
catid='$categoryid'
WHERE
id='$itemid'
');
$update_stmt->execute();
$update_stmt->close();
?>
Non ho errore ma il valore non mi viene cambiato, perchè?
Sto utilizzando Joomla 2.5.8 e Chronoforms V4 e il sito è su godaddy.
Grazie per gli aiuti.