• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Make a Vote Script at Website, Yes or No Question.

Kaywin

Lord of War WoW/Tibia 2D
Joined
Oct 24, 2008
Messages
541
Reaction score
6
Location
SwedeN
Hello I want players to vote at my server, if they thing the idea is good or not.

For example:

Do you guys want another donations?

Yes
or
No

Then I can see all results with my admin at the website, thank you! :D

rep is giving as always :)
 
First you need to unserstand that websites' scripts are designed in a certain language.
You first need to know if you are using PHP as main language, in case you don't know, then just specify what Web-Account Creation you are using.

In case you want to learn about PHP and scripting, read further:

page1.php:
PHP:
<html>
<form action="page2.php">
<input type="text" name="Variable" value="Hello"/>
<!-- Here you should put SUBMIT HTML button, i'm using notepad so i don't remember :P -->
</form>

</html>


page2.php:
PHP:
<?php
echo "This is an example of how to read variables from one page to another.";
echo "<br />"; 
$Var = $_POST[Variable];
if $Var == "Hello"
{
    // SQL Insert Statement, which you can get once you understand how this thing works.
   //  Here you will insert Hello to a database.
}
?>


That's how PHP works, i'm bad explaining without basic knowledge, but i hope this helps.
Btw in case you decide to get into PHP coding, i can help further, just PM me
 
Back
Top