E2T

Excel to Tally

Data Import since 2016

Works on all Tally.ERP9 & TallyPrime

Wapka.mobi Facebook Style Profile Code Guide

Pre-built templates, API integration, and bespoke customization backed by priority support.

4.9

4.9 Google Rating

Based on 300+ reviews • Trusted by 35,000+ Tally users

Import Modes

Pick your path

Priority Support

Pre-Built Templates

Kickstart imports with ready-to-use Excel formats.

API Integration

Sync your software to Tally via our Web API.

Customization

Tailor imports for complex scenarios.

TallyPrime 4.0 Assist

Expert help before you jump into built-in features.

Phone: +91 7710010372 / 73 / 74

Email: [email protected]

Get Remote Support

Wapka.mobi Facebook Style Profile Code Guide

<!-- Display posts --> <?php $posts = db_select("posts", "*", "uid = $viewed_uid", 0, "ORDER BY post_time DESC"); foreach($posts as $post): ?> <div class="post"> <strong><?=$profile_name?></strong> <small><?=date("F j, Y g:i a", $post['post_time'])?></small> <p><?=htmlspecialchars($post['post_text'])?></p> <span>👍 <?=$post['likes']?></span> <span>💬 <?=$post['comments_count']?></span> </div> <?php endforeach; ?>

<div class="cover" style="background-image: url('<?=$cover?>');"></div> <img class="avatar" src="<?=$avatar?>"> <div class="name"><?=$profile_name?></div> <div class="bio"><?=$bio?></div> wapka.mobi facebook style profile code

<!-- Post creation form if viewing own profile --> <?php if($logged_user_uid == $viewed_uid): ?> <div class="post-box"> <form method="post" action="submit_post.php"> <textarea name="post_text" placeholder="What's on your mind?" rows="2" style="width:100%"></textarea> <button type="submit">Post</button> </form> </div> <?php endif; ?> ?php if($logged_user_uid != $viewed_uid): ?&gt

: Start small – first get user login and profile display working, then incrementally add posts, friends, and likes. Use Wapka’s official documentation for tag references. And always test on actual mobile devices to ensure the “Facebook-style” experience is smooth. !-- Display posts --&gt

<!-- Friend request button (simplified logic) --> <?php if($logged_user_uid != $viewed_uid): ?> <div style="text-align:center; margin:10px;"> <button onclick="sendFriendRequest(<?=$viewed_uid?>)">Add Friend</button> </div> <?php endif; ?>