Reformulo mi prgunta:
Necesito poder insertar datos en la tabla jos_content de Joomla, utilizando PHP+MySQL, esto es posible?
en caso de que no sea posible como se puede insertar datos en esa tabla pero desde un archivo php, o sea yo tengo el archivo inserta.php y ahi escribo mi código, el código lo dejo aquí, pero no funciona:
Código PHP :
function Conectarse()
{
if( ! ($link = mysql_connect("localhost", "admin", "admin")))
{
echo "Error conectando a la base de datos.";
exit();
}
if( ! mysql_select_db("prueba", $link))
{
echo "Error seleccionando la base de datos.";
exit();
}
return $link;
}
$link = Conectarse();
$title = "Hola Mundo";
$alias = "hola-mundo";
$introtext = "Hola Mundo el texto.";
$fulltext = "Hola Mundo el texto.";
$state = 1;
$sectionid = 1;
$catid = 1;
$created = '2006-10-12 10:00:00';
$created_by = 62;
if(mysql_query("INSERT INTO jos_content (titulo,alias,introtext,fulltext,state,sectionid,catid,created,created_by) VALUES ('$titulo','$alias','$introtext','$fulltext','$state','$sectionid','$catid','$created','$created_by')", $link))
{
echo "Insertó ok";
}
else
{
echo "No insertó";
}