So, I'm making a Minecraft plugin which.. basically. When you click with a stick, it creates an explosion. When you click with a bone it shoots lightning. However, the plugin isn't working.
In the server console it shows the [BBBC] Enabling BBBC v1.0 then [BBBC] BBBC Activated!
But when I click...
Okay, so my code in the whole page is...
<?php
class forum {
public function connect() {
$con = mysql_connect('');
mysql_select_db('forum', $con);
}
public function login() {
$Username = $_POST['Username'];
$Password = $_POST['Password']...
Excuse how messy it is, I'm new to this stuff-ish not really.
<?php
class forum {
public function connect() {
$con = mysql_connect( ;) );
mysql_select_db('forum', $con);
}
public function login() {
$Username = $_POST['Username'];
$Password =...
Okay, so after about 20 minutes of trying to get a mysql_query to work I've decided to ask you guys. :)
Basically, I have a class called amlinks and it is this...
public function amlinker() {
$aretheyMOD = mysql_query("SELECT * FROM `users` WHERE `Username` = 'Roon' AND...
I didn't realize that there was another way to do jQuery, I thought you had to keep saying "if document is ready do this..." for each thing.
What is the more 'professional' way?