Hello.
I want to create this address with php!
<?php
$a = new dbclass();
$a->tablename->fieldname1('fieldvalue1')->fieldname2('fieldvalue2');
$a->delete(); //<<-- example!
$a->insert(); //<<-- example!
$a->update(); //<<-- example!
?>
Please help me how to create class with this feature.
thanks a lot.