The error your seeing is in this line of code:
if (!$_POST['title']) {
$msg = "<font color = 'red'><b>You must enter a comment to post</b></font>";
}
Which means if title is not set show: You must enter a comment to post
Trying changing it to
if (empty($_POST['title'])) {
$msg = "<font color = 'red'><b>You must enter a comment to post</b></font>";
}
I highly doubt this will cause any security issues.
@athenadepends on what you want, if you want to display the avatar or something similar you will have to add it to the loop, or if you just want a picture of a jail then add it to where you want it then style it
The code is definitely out dated, but what issue are you getting except "it doesn't work"
Also, this maybr of help
https://stackoverflow.com/questions/37589359/ipn-verification-postback-to-https
Do you need people first and second names when you ask for a username?
Wondering to see if it's relevant for anything in the game, if its not i would scrap it off your registration
I found a issue with the mysqli handler and had to write some php inside of this to make it work on anything above php 7, I have it running it on 8 atm
Leave your reviews for people you have worked with so people can easily see and grab feedback before they hire someone!
Based of experience a fair few years ago I would state @URBANZ🙂
You need to use LEFT JOIN then this should solve your issue
SELECT
COUNT(JR_refID) AS rankCount,
J_id AS id,
J_name AS name,
J_desc AS `desc`
FROM
jobs
LEFT JOIN
jobRanks
ON(
J_id =JR_refID
)
GROUP BY
J_id
ORDER BY
J_id ASC