[Done]: Guestbook bridge with CPG [Done]: Guestbook bridge with CPG
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

[Done]: Guestbook bridge with CPG

Started by DaBe, May 02, 2008, 06:51:56 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

DaBe

Hello

Can everyone help me, I want pay for it!

I search following: a guestbook bridge with cpg

features:
- for cpg members the name display automaticly linked with porfile.
- cpg members they had an avatar, they display beside the post.
- normal user can write name, email and post
- members can write post
- post per page

the budget is 100 CHF = ca. 62 EURO = ca. 95 USD
timeshedule = 15.05.2008

when it workd I give it here to download for other user.



i have try it self..but im a noob in php

if (!defined('IN_COPPERMINE')) die('Not in Coppermine...');

if (!USER_ID) {
        starttable("100%", "<b>Not Logged In</b>");
$user_group = USER_GROUP;
echo<<<EOT
        <tr><td class="tableb" >
        Hello {$user_group}<br />
       
        </td></tr>

EOT;

        endtable();
} else if (USER_GROUP=='Administrators') {
        starttable("100%", "<b>Administrator Mode</b>");
$user_name = USER_NAME;
$user_group = USER_GROUP;
echo<<<EOT

        <tr><td class="tableb" >
        Hello {$user_name} <br />
      your  {$user_group}
        </td></tr>

EOT;

        endtable();


} else if (USER_GROUP=='Registered') {
        starttable("100%", "<b>Registered Member</b>");
$user_name = USER_NAME;
$user_group = USER_GROUP;
echo<<<EOT

        <tr><td class="tableb" >
        Hello {$user_name} <br />
      your {$user_group}
</td></tr>

EOT;

        endtable();
}



DaBe