Writing to user-specific page - Joomla! Forum - community, help and support
hi, i'm new web development , php, i'm knowledgeable in java, python, c , programming in general.
i want create user-specific page stores ip addresses of user (and users have access view own page contains ip addresses).
a program access website through specific url: <mydomainname>.com/index.php?option=com_auth &username=<insertusername>&password=<insertpassword>
and php script com_auth extension authenticate credentials through
following grab ip address of user
now need append address user specific page.
how create such page, , how can extension read & write page?
i want create user-specific page stores ip addresses of user (and users have access view own page contains ip addresses).
a program access website through specific url: <mydomainname>.com/index.php?option=com_auth &username=<insertusername>&password=<insertpassword>
and php script com_auth extension authenticate credentials through
code: select all
if ($response->status != jauthentication::status_success) {
following grab ip address of user
code: select all
$ip = $_server['remote_addr'];
now need append address user specific page.
how create such page, , how can extension read & write page?
Comments
Post a Comment