Hello, Quest!
"Get Knowledge And Spread Knowledge"

Chat
If you get an error during the chat, please Refresh the page!
News Feed
samman · Published on 2025-03-16 15:36:40 (3 weeks ago )
samman · Published on 2025-03-16 15:36:40 (3 weeks ago )
mampir dong http://umkm.wapka.co
![]() | comments | |
like | comment | share |
----------(1-File-Search)---------->
FB_IMG_1739463024479
vikkas
· Published on 2025-03-14 08:00:39 (3 weeks ago )
Visit http://finewap.tk
![]() | comment |
----------(1-File-Search)---------->
FB_IMG_1739463438259
test_007
· Published on 2025-03-14 07:46:42 (3 weeks ago )
Visit http://finewap.tk
![]() | comment |
converts comma separated values to random
vikkas · Published on 2022-12-06 16:15:07 (2 years ago )
vikkas · Published on 2022-12-06 16:15:07 (2 years ago )
value tags: pop, rock, metal, edm :URL_ENCODE(["%var(tags)%"]).REPLACE(["%2C%20", "%22%2C%20%22"]).URL_DECODE.RANDOM.SET(related).NULL; result var(related) : edm (one of the random var tags above)
![]() | comment |
how to create a shoutbox?
vikkas · Published on 2022-12-06 16:12:24 (2 years ago )
vikkas · Published on 2022-12-06 16:12:24 (2 years ago )
Post creator: <*div class="list"><*b>What's On Your Mind?<*/b><*br/><*textarea type="text" name="shout"><*/textarea><*br/><*input type="submit" name="submit" value="Share" /> or <*img src="http://static.ak.fbcdn.net/rsrc.php/v1/yz/r/StEh3RhPvjk.gif"/> <*a href="/photo">Photo<*/a><*/div> Config:<*forumid>14630<*/forumid><*title>salamonvikkas<*/title><*content>:*POST(shout);<*/content> <*status>published<*/status> Post lister: <*a href="/profile">%username%<*/a><*br/>Says: %content%<*br/>:*VALUE(%delete%).IFEQ(/delete/post/%id%).THEN(<*a href="%delete%">Delete<*/a>).ELSE.NULL;<*br/> Config:<*limit>6<*/limit><*status>published<*/status><*order>new<*/order><*page>:*GET(page);<*/page><*url>?page=<*/url>
![]() | comment |
How many programe skill wapka accept?
vikkas · Published on 2022-12-06 16:08:40 (2 years ago )
vikkas · Published on 2022-12-06 16:08:40 (2 years ago )
1. Tags & functions 2. Html 3. Javascript 4. Jquery 5. css 6. xml 7. wapka script (ws) [new]
![]() | comment |
What type of site wapka can create?
vikkas · Published on 2022-12-06 16:07:09 (2 years ago )
vikkas · Published on 2022-12-06 16:07:09 (2 years ago )
1. Chat site 100% 2. Video Share 100% 3. Music Share 100% 4. Graphic Work 100% 5. Blog site 100% 6. Additive Game 92% 7. Mailing to Gmail 25% 8. Map site 55% 9. Website builder 90% 10. Tech & science
![]() | comment |
Wapka Basic function
vikkas · Published on 2022-12-06 16:06:08 (2 years ago )
vikkas · Published on 2022-12-06 16:06:08 (2 years ago )
<div class="bar1"> <div class="bar1top">Helper function</div> <div class="info">You can use helper function with tag codes. Helper function is very useful for data processing. WAPKA function name is case sensitive. To make function chain use (.) dot</div> <div class="bar13"><b>:GET(name);</b> - To get data from url</div> <div class="bar14"><b>:POST(name);</b> - To get http post data</div> <div class="bar13"><b>:COOKIE(name);</b> - To get http cookie</div> <div class="bar14"><b>:REQUEST(name);</b> - Get combined data from get, post & cookie</div> <div class="bar13"><b>:VALUE(data);</b> - This function is used to set function parameter.</div> <div class="bar14"><b>:DATA(Function or tag or data);</b> - You can get data from many function like :DATA(Name: #GET(name)# ID: #VAR(USER_ID)#);</div> <div class="bar13"><b>:SET(name);</b> - You can use this function to define variable. :VALUE(test data).SET(new_var); You can also call multiply function and make chain - :GET(id).INT.SET(ID); here we get data from url then make sure it number then set variable.</div> <div class="bar14"><b>:SAVE(name);</b> - This is similar as SET but this will save data in server (session) and you can use this data later on any page</div> <div class="bar13"><b>:VAR(name);</b> - To get data from variable use this function</div> <div class="bar14"><b>:DATE();</b> - This function is for date and time. To format current date Use :DATE(formater); You can format any date from other function and also time ago like :VALUE(Dec 2020).DATE(AGO); to use with other function use :VALUE(%date%).DATE(Formater or AGO);</div> <div class="bar13"><b>:SLUG(make url);</b> - Make SEO frendly url from any text. You can use with other function/tag like :SLUG(%title%);</div> <div class="bar14"><b>:URL_ENCODE(url); , :HTML_ENCODE(html);, :BASE64_ENCODE(data);)</b> - To encode data</div> <div class="bar13"><b>:URL_DECODE(url); , :HTML_DECODE(html);, :BASE64_DECODE(data);)</b> - decode encoded data</div> <div class="bar14"><b>:REMOVE_TAG;</b> - to remove html tag from input. usage - :REMOVE_TAG(<tag>this is tag</tag>); To allow tag use like - :VALUE(<b>this is bold</b><i>this is italic</i>).REMOVE_TAG(<i>);</div> <div class="bar13"><b>:LOWER(MAKE IT LOWER);</b> - convert all character to lower case.</div> <div class="bar14"><b>:UPPER(lower to upper)</b> - convert all character to upper case</div> <div class="bar13"><b>:TRIM( space );</b> - Remove whitespace from data. You can also remove other character like :VALUE(-----test--------).TRIM(-); this will remove all -</div> <div class="bar14"><b>:CHOP(space );</b> - Same as TRIM but remove from at the end of string</div> <div class="bar13"><b>:CUT(["start", "end"]);</b> - Get part of string from start to end you can also set starting and ending position like :VALUE(this is test).CUT([0, 10]); to get first 10 character</div> <div class="bar14"><b>:LENGTH(data);</b> - length</div> <div class="bar13"><b>:INT(1234abcd);</b> - To make sure data is numeric</div> <div class="bar14"><b>:NULL(nothing);</b> - If you want to call a function and hide result use this at the end. :GET(data).SET(var).NULL; set variable and display nothing</div> <div class="bar13"><b>:REPLACE(["search", "replace"]);</b> - This function is used to search and replace you can pass json array or string as parameter. Usage :VALUE(test_data).REPLACE("_data");</div> <div class="bar14"><b>:RANDOM(["one", "two", "three", "More");</b> - Get random value form JSON array or string. To generate random number use like :RANDOM("123456790");</div> <div class="bar13"><b>:PLUS(numeric value);</b> - Math function.</div> <div class="bar14"><b>:MINUS(numeric value);</b> - Math function.</div> <div class="bar13"><b>:DIVIDE(numeric value);</b> - Math function.</div> <div class="bar14"><b>:MULTIPLY(numeric value);</b> - Math function.</div> <div class="bar13"><b>Math function usage:</b> - To calculate data you can use math function. Example usage: :GET(id).PLUS(100); , :VALUE(100).PLUS(100).DIVIDE(2);, :VAR(number).PlUS.GET(number);</div> </div>
![]() | comment |
resize message lister %msg% image bbcode direct
vikkas · Published on 2022-12-06 16:02:54 (2 years ago )
vikkas · Published on 2022-12-06 16:02:54 (2 years ago )
<style> msg img{width:150px;height:150px;} </style> <msg>%msg%</msg> dont worry,any image that is inside will be resizeable.
![]() | comment |
How to set wapka theme
vikkas · Published on 2022-12-06 16:01:20 (2 years ago )
vikkas · Published on 2022-12-06 16:01:20 (2 years ago )
wapka.org: Control panel > Pre-build Themes > Restore Wapka themes downloaded json file and select restore Or Enter wapka themes file key to restore Ex: [05f71cfbc2b6b19ff8cad727c55a03d1:326377]
![]() | comment |
delete post creator only code
vikkas · Published on 2022-12-06 16:00:17 (2 years ago )
vikkas · Published on 2022-12-06 16:00:17 (2 years ago )
:*VAR(USER_ID).IFEQ(%userid%).THEN(<a href="%delete%">❌ delete</a>).ELSE();
![]() | comment |
New wapka code called (link target v1.0)
vikkas · Published on 2022-12-06 15:58:04 (2 years ago )
vikkas · Published on 2022-12-06 15:58:04 (2 years ago )
Lot of developers in wapka like to show content of div when link is click something like /index/?page=login but the page load true browser to make sure their :GET; function collect the page data called login. There is a shortcut to display div content like app without page loading... and you will enjoy it. Set your css .login,.register,.terms {display:none;} #login:target,#register:target,#terms:target {display:block;} link <a href="#login">Login Page</a> <a href="#register">Register Page</a> <a href="#terms">Terms Page</a> <div class="login" id="login">Login to your account here</div> <div class="register" id="register">Register your account here</div> <div class="terms" ="terms">You full terms and others content here</div>
![]() | comment |
Check if logged user is an Admin
vikkas · Published on 2022-12-06 15:56:58 (2 years ago )
vikkas · Published on 2022-12-06 15:56:58 (2 years ago )
The following Wapka code can check if the logged user is an Admin: :VAR(USER_ROLE).IFMATCH(Admin).THEN(Is an Admin).ELSE(Not an Admin); It returns "Is an Admin" if the user belongs to any of the following roles: Administrator, Master Admin, or Super Admin. Returns "Not an Admin" if the user belongs to any other role.
![]() | comment |
Update
File Upload User Editor.jpg [ ] (296.16 KB)(vikkas)
File Upload Registration.jpg [ ] (270.2 KB)(vikkas)
File Upload User Login.jpg [ ] (241.15 KB)(vikkas)
Wapka Codes 2023 Long time login code [ ] (vikkas)
Wapka Codes 2022 How to set api data & structure [ ] (vikkas)
Categorys
News Feed (42)
Wapka Codes 2021 (40)
Wapka Codes 2022 (20)
Wapka Codes 2023 (2)
Wapka api (5)
File Upload (6)
Wapka Images 2021 (15)
Statistics
Total posts 1457 •Total Files 62 •Total members 42 •Our newest member patepang