Search Result: Wap
----------(Post-Search)---------->
Old Six Wapka Themes and Keys ID
salamonvikkas · Published on 2022-03-03 17:36:09 (3 years ago )
salamonvikkas · Published on 2022-03-03 17:36:09 (3 years ago )
1. themestore [2e3bf2ee14dcad091461d1817b6da937:307282] 2. MusicBD [546df77a75e373cb82e2d716a6d8b23a:307281] 3. Mp3 Download Site [44c8881da7a46b02107cd7dc9859ef86:307280] 4. matikiri [446a556997658783675ff6d8cdae193b:307279] 5. Tamilware [1a8dcd2ace5cbf8cafdd5f4c7b9c3b7e:307277] 6. Finewap [336f1c97909ed63ffdec44fb9e7d0012:307276]
comment |
----------(Post-Search)---------->
New wapka code called (link target v1.0)
mario · Published on 2022-02-16 12:40:53 (3 years ago )
mario · Published on 2022-02-16 12:40:53 (3 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 |
----------(Post-Search)---------->
New Six Wapka Themes and Keys ID
mario · Published on 2022-02-11 08:37:08 (3 years ago )
mario · Published on 2022-02-11 08:37:08 (3 years ago )
1. Popchat 2022 [e30819a3662ed617fca53126789efd74:299548]
2. Edupedic [80e298d1cd2a371dc6156fd380124eac:296416]
3. Poptalk v9.8 [837fc68ef4cbb3958100625163519a3e:276892]
4. Poptalk 2021 [43d7fd7731d0ff820c09956cb05c84c4:263765]
5. Naijashare [dde9d3bde5f7abf7036d77cdb380fa01:205226]
6. Paint Note [e6a79475022db4cc9c23a403fffc0ad4:130074]
comment |
----------(Post-Search)---------->
----------(Post-Search)---------->
How many programe skill wapka accept?
mario · Published on 2022-02-06 10:08:54 (3 years ago )
mario · Published on 2022-02-06 10:08:54 (3 years ago )
1. Tags & functions 2. Html 3. Javascript 4. Jquery 5. css 6. xml 7. wapka script (ws) [new]
comment |
----------(Post-Search)---------->
What type of site wapka can create?
mario · Published on 2022-02-06 10:02:41 (3 years ago )
mario · Published on 2022-02-06 10:02:41 (3 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 |
----------(Post-Search)---------->
Wapka Basic function
maria · Published on 2022-02-04 12:18:14 (3 years ago )
maria · Published on 2022-02-04 12:18:14 (3 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 |
----------(Post-Search)---------->
How to create wapka link to file,post etc
mario · Published on 2022-01-10 09:26:39 (3 years ago )
mario · Published on 2022-01-10 09:26:39 (3 years ago )
in wapka we have two (2) ways to create link but not everybody know how to do it the first link goes with / + ? + = + & why the second link goes with / + / + / + / unlimited these second link in wapka is called page pattern url why the other link is for beginners like these /index/?act=login&session=fr322eD6&browser=Chrome&phone=Tecno-Y2, in pattern url its just /index/login/fr322eD6/Chrome/Tecno-Y2 but you will get no result because its VAR not GET... your :VAR(name); will succeed when you add a pattern to header page or specific page like login,home,message any page you like something like these /(?<act>[0-9]+)/*/(?<session>[0-9]+)/*/(?<browser>[0-9]+)/*/(?<phone>[0-9]+)/*
i mean you should add it very important. now url pattern is done our final work is to collect value from server and display it by :VAR(name); change the word name to any like :VAR(act); to display content of "login" :VAR(session); Do thesame for rest.
comment |
----------(Post-Search)---------->
wapka shortcut javascript file.js explanantion
mario · Published on 2021-12-01 08:32:21 (3 years ago )
mario · Published on 2021-12-01 08:32:21 (3 years ago )
no need to create any javascrip into <*script> js code <*/script> in any code you made. just use wapka page has script for example to show count from another page just <*script src="/count/id/5532.js"><*/script> output is to be <*class id="5532"><*/class>
comment |
----------(Post-Search)---------->
[HELP] Right Now Wapka Showing Unregistered User Uploading Files As Admin Uploading Files Fix This
sajeevscg · Published on 2021-11-29 11:13:40 (3 years ago )
sajeevscg · Published on 2021-11-29 11:13:40 (3 years ago )
#Now Unregistered user uploaded files shown as admin upload files, #So, i need change it to (GUST) Upload [Who upload files without register] #*Example Link[*Education Purpose*](http://statusload.wapka.xyz/download/243875/vid-20211111-wa0000) #i cant edit download page Becouse (*1.Lots of advanced tag used in download page. *2.its totaly wast my time. *3.use mobile to update site.) #im using difrent directores to upload files for users and admins. #right now i just creat a code👇 :VALUE(%dir%).IFIN(["00000","00000","00000",]).THEN(ADMIN_UPLOAD).ELSE(GUST_UPLOAD).OR.VALUE(%dir%).IFIN(["1111","1111","1111"]).THEN.DATA(#GET(username)#).ELSE.NONE; #All (0000) is Admin upload dir #All (1111) is user upload dir #iAm send user from download page to user file page via https-example.com/userfile?userid=%id%&username=%username% format *But its not wirking! *#Any one have a better mind,idea to solve ma problum!
comment |