1
I've been tring to understand how to access tables in the XOOPS DB.
So far I've got this:
// To delete rom from table
$query = "Delete from ".$xoopsDB->prefix("xoops_table")." where id='$id'";
// To insert a row into the table
$query = "Insert into ".$xoopsDB->prefix("xoops_table")." (testing1, testing2) values ('$test1','$test2')";
But what if I want the value of a particular column from a certain row? How would I retreive it?
Thanks