"मंज़िलें उन्हीं को मिलती हैं, जो अपने हौसलों से डरते नहीं। वैकेंसी न आने से हताश न हों, यह समय अपनी कमजोरी को ताकत बनाने का है, ताकि जब वैकेंसी आए, तो पहली बार में ही बाजी मार सकें।"
"जब वैकेंसी न आए, तो समझो सरकार तुम्हें और भी बेहतर बनने का मौका दे रही है। तैयारी इतनी खामोशी से करो कि तुम्हारी सफलता शोर मचा दे।"
"याद रखो, जो आज छोड़ देगा, वो कल वैकेंसी आने पर भी पीछे रह जाएगा। यह तैयारी का नहीं, तपस्या का समय है।"
Hi, guest!

Chat
If you get an error during the chat, please Reload the page !
Copy to clipboard
The Arabic word munāfiq (منافق) means "hypocrite" or "false Muslim". In Islam, it refers to someone who appears to be Muslim but is actually non-Muslim and seeks to undermine the Muslim community.
The Quran's 63rd chapter, Al-Munafiqun (المنافقون), is about hypocrites and has 11 verses.
Islamic tradition has labeled Abd Allah ibn Ubayy as a munāfiq and the "leader of the munāfiqun". Although he appeared to convert to Islam when the Islamic prophet Muhammad arrived, he remained treacherous to Islam until his death.
Copy to clipboard
<br><b>
Read this dua when u enter in any washroom or toilet.
It will blind the male jinn and female jinn's eyes they will not able to see you or harm you whenever you read this dua before enter in any washroom or toilet.
Kindly share this dua to your family and friends. Jazakallah :) </b>
Copy to clipboard
<br>
Read this duaa before sunrise and before sunset<br>
Also read this dua and blow urself when you are going on journey or step outside of your home 🏡.
Jazakallah :-)
Copy to clipboard
Sadaqa Jariyah is an Islamic practice of ongoing charity that continues to benefit others even after the donor's death. It's considered one of the most rewarding deeds in Islam, and the donor is believed to receive ongoing rewards from Allah.
Copy to clipboard
please how to display site name and page link in lua
Copy to clipboard
<div class="content">Hello! I would like to share a simple code for a login page using Lua scripting. You are free to style the HTML codes however you want.<br>
The code can be a little challenging to understand at first, but feel free to ask if you don't understand any part.<br>
See also: <a href="https://forum.wapka.org/viewtopic.php?t=2057" class="postlink">Simple register page code using Lua scripting</a><br>
<br>
How to use it:
<ol style="list-style-type:decimal">
<li>Log in to the Wapka Dashboard (<a href="https://web.wapka.org/dashboard" class="postlink">https://web.wapka.org/dashboard</a>);</li>
<li>Select your website from the "Your services" list;</li>
<li>Now create a new page called "login" (Basic Function > New Page) - you can skip this step if you already have a login page and want to use it.</li>
<li>Now open the login page we created and go to Advanced function > Script, and finally paste the following Lua code into the textarea:</li>
</ol>
<div class="codebox"><p>Code: <a href="#" onclick="selectCode(this); return false;">Select all</a></p><pre><code>if (env.userid ~= 0) then -- Check if the user is already logged in
url.redirect("/") -- If yes, redirect to the main page end if (req.method == "POST") then -- Checks if the login form has been submitted
error_message = nil -- Starts error message as null
username = req.post.username -- Gets the username from the POST request
password = req.post.password -- Gets the password from the POST request
continue = req.get.continue -- Useful if the user came from another page
if continue == nil then continue = "/" end -- Checks if a continue URL has been defined, if not, it is defined as the home page
if (username == "" and password == "") then -- Checks if the username and password are empty
error_message = "You must enter your username and password."
elseif (username == "") then -- Checks if username is empty
error_message = "You must enter your username."
elseif (password == "") then -- Checks if password is empty
error_message = "You must enter your password."
else -- Continue with login if username and password have been filled in
local param = { -- Sets the parameters for the API login method
username = username,
password = password
}
local is_ok, login, info, error_login = api.user_login(param)
if (is_ok) then -- Username and password are correct and login was successful
url.redirect(continue) -- Redirects to the destination defined in continue
else -- An error occurred while trying to login
error_message = error_login -- defines the error message as the one received in the login method
end
end
if (error_message) then -- Checks if any errors occurred and sets an error message div to display on the page
html_error = [=[<div class="error-message">%s</div>]=]
error_message = string.format(html_error, error_message)
end end local html_code = [=[ <h2>Log-in to your account</h2> %s <!-- This is where the error message will be --> <form method="post"> <div class="input"> <label for="username">Username:</label><br> <input type="text" name="username" value="%s" placeholder="Username" id="username"> </div> <div class="input"> <label for="password">Password:</label><br> <input type="password" name="password" value="%s" placeholder="Password" id="password"> </div> <div class="input-button"> <input type="submit" class="input-button" value="Login"> </div> </form> <div class="register-message"> Not registered yet? <a href="/register">Register</a> </div> ]=] print(string.format(html_code, error_message or "", username or "", password or "")) </code></pre></div></div> <div class="notice"> Credit - <a href="/view/135624?q=francisco&id=135624&uid=135624" class="username">francisco</a> </div>
url.redirect("/") -- If yes, redirect to the main page end if (req.method == "POST") then -- Checks if the login form has been submitted
error_message = nil -- Starts error message as null
username = req.post.username -- Gets the username from the POST request
password = req.post.password -- Gets the password from the POST request
continue = req.get.continue -- Useful if the user came from another page
if continue == nil then continue = "/" end -- Checks if a continue URL has been defined, if not, it is defined as the home page
if (username == "" and password == "") then -- Checks if the username and password are empty
error_message = "You must enter your username and password."
elseif (username == "") then -- Checks if username is empty
error_message = "You must enter your username."
elseif (password == "") then -- Checks if password is empty
error_message = "You must enter your password."
else -- Continue with login if username and password have been filled in
local param = { -- Sets the parameters for the API login method
username = username,
password = password
}
local is_ok, login, info, error_login = api.user_login(param)
if (is_ok) then -- Username and password are correct and login was successful
url.redirect(continue) -- Redirects to the destination defined in continue
else -- An error occurred while trying to login
error_message = error_login -- defines the error message as the one received in the login method
end
end
if (error_message) then -- Checks if any errors occurred and sets an error message div to display on the page
html_error = [=[<div class="error-message">%s</div>]=]
error_message = string.format(html_error, error_message)
end end local html_code = [=[ <h2>Log-in to your account</h2> %s <!-- This is where the error message will be --> <form method="post"> <div class="input"> <label for="username">Username:</label><br> <input type="text" name="username" value="%s" placeholder="Username" id="username"> </div> <div class="input"> <label for="password">Password:</label><br> <input type="password" name="password" value="%s" placeholder="Password" id="password"> </div> <div class="input-button"> <input type="submit" class="input-button" value="Login"> </div> </form> <div class="register-message"> Not registered yet? <a href="/register">Register</a> </div> ]=] print(string.format(html_code, error_message or "", username or "", password or "")) </code></pre></div></div> <div class="notice"> Credit - <a href="/view/135624?q=francisco&id=135624&uid=135624" class="username">francisco</a> </div>
Copy to clipboard
Rule:
:VAR(USER_AGENT).IFEQ(Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36).THEN(#DISABLE#);
Copy to clipboard
https://forum.wapka.org
Wapka forum codes and Real updates about Wapka.org are available here.
<br>
<br>
<br>
<div><a href="/"><div style="text-align: center; color: black; font-size: 25px;">WAPKA</div></a></div>
<div><strong>Create your own WAP site simple and fast!</strong></div>
<div class="bar1">
<div class="bar1top">What is WAPKA?</div>
<div class="info">
Wapka is a platform which provides free service for users to create websites.<br/> With Wapka you can create own professional looks WAP site simply and fast without knowledge of any programming language.<br/> You can use many commands and pseudotags, which help you to create dynamic website.<br/> You can use html, text, css, JavaScript, xml or JSON to make your website attractive.<br/> If you don't know how to use tags & function you can just use default themes.<br/> We are committed to help more users to have their own websites.<br/> Creating website in Wapka, it does not require professional skills and server space.<br/> We can be very easy to create our own website.<br/> Using services on Wapka.org is absolute free, so start building your website just right now :)
</div>
<a href="/login"><button class="button">Login →</button></a>
<a href="https://wapka.org/register"><button class="button">New Account</button></a>
</div>
<div class="bar1top">What is WAPKA?</div>
<div class="info">
Wapka is a platform which provides free service for users to create websites.<br/> With Wapka you can create own professional looks WAP site simply and fast without knowledge of any programming language.<br/> You can use many commands and pseudotags, which help you to create dynamic website.<br/> You can use html, text, css, JavaScript, xml or JSON to make your website attractive.<br/> If you don't know how to use tags & function you can just use default themes.<br/> We are committed to help more users to have their own websites.<br/> Creating website in Wapka, it does not require professional skills and server space.<br/> We can be very easy to create our own website.<br/> Using services on Wapka.org is absolute free, so start building your website just right now :)
</div>
<a href="/login"><button class="button">Login →</button></a>
<a href="https://wapka.org/register"><button class="button">New Account</button></a>
</div>
Copy to clipboard
<div class="postbody">
<div id="post_content2860">
<h3 class="first">
<a href="./viewtopic.php?p=2860&sid=c17b740bdb4363bad25d051a36ebca91#p2860">https://forumm.wapka.co</a>
</h3>
<div class="content">Hey Wapka developers our first old Wapka forum site forum.wapka.co was restricted and down by the Wapka administration.<br>
Whenever you search on google you will get most results from froum.wapka.co not from forum.wapka.io i think this is reason he let down the forum.wapka.co <br>
today I am giving full authority to Wapka admin to control the link forum.wapka.co I have no objection thank you. i am going to replace the Domin name with <a href="https://forumm.wapka.co" class="postlink">https://forumm.wapka.co</a> thank you<br>
<br>
Important notice:<br>
Due to Some reason<br>
Real ChaTLook has been Removed <br>
Real Dschat has been Removed<br>
<a href="https://Forumm.wapka.co" class="postlink">https://Forumm.wapka.co</a> don't owe These Domin name anymore</div>
</div>
</div>
Copy to clipboard
Promote your site https://vikkas.wapka.co [ ] (Salmonvikash)
Promote your site Online GIF maker and image editor [ ] (UnitedMuslim)
News Feed Black Flag of Khurashan [ ] (UnitedMuslim)
News Feed CTET 2024 December Admit Card [ ] (UnitedMuslim)
Islamic Dua 2024 Maut aane ke baad insan 9 Arzoo keregaa [ ] (UnitedMuslim)
Islamic Dua 2024 Nukri nahi lg rhi rizq ki taangi hai ? [ ] (UnitedMuslim)
Category
Islamic Dua 2024 (16)
News Feed (707)
Wapka Codes 2021 (65)
Wapka Codes 2022 (48)
Statistics
Total posts 839 •Total Files 172 •Total members 393 •Our newest member weefewfwe4w