mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
add news.php
This commit is contained in:
parent
949e6fe44c
commit
90d9d2a03c
4 changed files with 139 additions and 416 deletions
|
@ -218,6 +218,102 @@ function get_fourm_replies($threadId)
|
|||
}
|
||||
|
||||
|
||||
function get_all_news()
|
||||
{
|
||||
include('config.php');
|
||||
$connect = mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) or die("Unable to connect to '$dbhost'");
|
||||
$stmt = $connect->prepare("SELECT * FROM News ORDER BY CreationDate DESC");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$news = [];
|
||||
|
||||
|
||||
while ($row = $result->fetch_row()) {
|
||||
$arr = [ ['id' => $row[0], 'date' => $row[1], 'title' => $row[2], 'contents' => $row[3]] ];
|
||||
$news = array_merge($news, $arr);
|
||||
}
|
||||
|
||||
return $news;
|
||||
|
||||
}
|
||||
|
||||
function get_news_id(int $id)
|
||||
{
|
||||
include('config.php');
|
||||
$connect = mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) or die("Unable to connect to '$dbhost'");
|
||||
$stmt = $connect->prepare("SELECT * FROM News WHERE NewsId=?");
|
||||
$stmt->bind_param("i", $id);
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
|
||||
$news = [];
|
||||
|
||||
|
||||
while ($row = $result->fetch_row()) {
|
||||
$arr = [ ['id' => $row[0], 'date' => $row[1], 'title' => $row[2], 'contents' => $row[3]] ];
|
||||
$news = array_merge($news, $arr);
|
||||
}
|
||||
|
||||
return $news;
|
||||
}
|
||||
|
||||
|
||||
function get_recent_news()
|
||||
{
|
||||
include('config.php');
|
||||
$connect = mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) or die("Unable to connect to '$dbhost'");
|
||||
$stmt = $connect->prepare("SELECT * FROM News ORDER BY CreationDate DESC LIMIT 5");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$news = [];
|
||||
|
||||
|
||||
while ($row = $result->fetch_row()) {
|
||||
$arr = [ ['id' => $row[0], 'date' => $row[1], 'title' => $row[2], 'contents' => $row[3]] ];
|
||||
$news = array_merge($news, $arr);
|
||||
}
|
||||
|
||||
return $news;
|
||||
|
||||
}
|
||||
|
||||
function get_latest_news()
|
||||
{
|
||||
include('config.php');
|
||||
$connect = mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) or die("Unable to connect to '$dbhost'");
|
||||
$stmt = $connect->prepare("SELECT * FROM News ORDER BY CreationDate DESC LIMIT 1");
|
||||
$stmt->execute();
|
||||
$result = $stmt->get_result();
|
||||
$news = [];
|
||||
|
||||
|
||||
while ($row = $result->fetch_row()) {
|
||||
$arr = [ ['id' => $row[0], 'date' => $row[1], 'title' => $row[2], 'contents' => $row[3]] ];
|
||||
$news = array_merge($news, $arr);
|
||||
}
|
||||
|
||||
return $news;
|
||||
|
||||
}
|
||||
|
||||
|
||||
function post_news(string $title, string $text)
|
||||
{
|
||||
include('config.php');
|
||||
$connect = mysqli_connect($dbhost, $dbuser, $dbpass,$dbname) or die("Unable to connect to '$dbhost'");
|
||||
$result = mysqli_query($connect, "SELECT MAX(NewsId) FROM News");
|
||||
|
||||
$news_id = $result->fetch_row()[0] + 1;
|
||||
if($news_id == NULL)
|
||||
$news_id = 0;
|
||||
$curTime = time();
|
||||
|
||||
$stmt = $connect->prepare("INSERT INTO News VALUES(?,?,?,?)");
|
||||
$stmt->bind_param("iiss", $news_id, time(), $title, nl2br($text));
|
||||
$stmt->execute();
|
||||
}
|
||||
|
||||
|
||||
function get_fourm_threads($fourm)
|
||||
{
|
||||
include('config.php');
|
||||
|
|
|
@ -3,35 +3,55 @@ session_start();
|
|||
include("config.php");
|
||||
include("common.php");
|
||||
include("header.php");
|
||||
|
||||
if(isset($_POST['TITLE'], $_POST['CONTENT'])){
|
||||
if(is_logged_in()){
|
||||
if($_SESSION['ADMIN'] == "YES"){
|
||||
if(!($_POST['TITLE'] == "" || $_POST['CONTENT'] == ""))
|
||||
post_news($_POST['TITLE'], $_POST['CONTENT']);
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<FONT SIZE=+1><B>Horse Isle News</B></FONT><BR>
|
||||
Welcome to Horse Isle News. Changes and additions to game are posted here regularly. Newest entries are on top.
|
||||
<BR>
|
||||
|
||||
<TABLE WIDTH=80% BGCOLOR=FFAABB BORDER=0 CELLPADDING=4 CELLSPACING=0><TR><TD class=newslist><B>Most Recent Horse Isle News:</B> [ <A HREF=?NEWSALL=1>SHOW ALL</A> ]<BR><BR><B>[ June 23, 2020 ] <FONT COLOR=880000>Horse Isle 1 Compromise</FONT>:</B><BR> Unfortunately, some troublemakers made a mess of HI1.<BR>We have reverted to a backup from 4am PST and taken some precautions. So, anything you "did" this morning was reverted.<br>We have also given all subs +12hrs to cover the down time.<br><br>Because passwords for accounts were likely compromised, we setup a system to verify and unlock for players' protection. When you try to login you will be prompted to reset your password. We can automatically unlock most players' accounts, but some will require manual support via email. Just follow the directions and please be patient with us.<br><br>Sorry about the trouble. HI1 was never designed to survive so long into this new mean digital world. ;)<br><br>P.S. The XSS alert was a simple javascript alert, just meaningless and harmless.<br><br>Thanks!<BR><BR><B>[ June 9, 2020 ] <FONT COLOR=880000>2020 Fan Art Contest</FONT>:</B><BR> Thanks to everyone that participated in the 2020 Fan Art Contest.<br><br>
|
||||
<TABLE WIDTH=80% BGCOLOR=FFAABB BORDER=0 CELLPADDING=4 CELLSPACING=0><TR><TD class=newslist><?php
|
||||
if(isset($_GET['NEWSALL'])){
|
||||
echo('<B>All Horse Isle News:</B> [ <A HREF=?>CLOSE</A> ]<BR>');
|
||||
}
|
||||
else if(isset($_GET['NEWSID'])){
|
||||
echo('<B>Selected Horse Isle News:</B> [ <A HREF=?NEWSALL=1>SHOW ALL</A> ] [ <A HREF=?>CLOSE</A> ]<BR>');
|
||||
}
|
||||
else{
|
||||
echo('<B>Most Recent Horse Isle News:</B> [ <A HREF=?NEWSALL=1>SHOW ALL</A> ]<BR>');
|
||||
}
|
||||
?><BR><?php
|
||||
$news_list = null;
|
||||
if(isset($_GET['NEWSALL'])){
|
||||
$news_list = get_all_news();
|
||||
}
|
||||
else if(isset($_GET['NEWSID'])){
|
||||
$news_list = get_news_id(intval($_GET['NEWSID']));
|
||||
}
|
||||
else{
|
||||
$news_list = get_recent_news();
|
||||
}
|
||||
|
||||
Everyone that submitted artwork has been credited 500 mobia or a month sub on HI1/2. It was all very creative and fun to look through! The various media is great. Socks and Chocolate and more! We did not bother trying to rank or sort in any way, it was all good! And some real talent in the submissions.<br><br>
|
||||
|
||||
See the submissions for yourself here: <A HREF=http://horsesareawesome.com/fa4/>http://HorsesAreAwesome.com</A> <br>
|
||||
Thank you to everyone that participated!<br>-Joe, Miranda and team<BR><BR><B>[ May 5, 2020 ] <FONT COLOR=880000>Fan Art Contest</FONT>:</B><BR> To celebrate our One Year Anniversary for HI3 and give folks a fun distraction, let's have an art contest! Devs will select winners based on several different criteria, from most original, to happy feeling, etc. So selection will be slightly random but will favor effort and creativity.<br><br>
|
||||
|
||||
<B>Rules:</B><br>
|
||||
A) Make something inspired by the world of Horse Isle.<br>
|
||||
B) Any thing that can be captured in a digital image.<br>
|
||||
C) Submissions must be all age appropriate.<br>
|
||||
D) New artwork created BY YOU for this contest.<br>
|
||||
E) Single submission per person.<br>
|
||||
F) By submitting you are giving Horse Isle full permission to display and use the image.<br><br>
|
||||
|
||||
<B>Awards:</B><br>
|
||||
A) Top 25 (or more) submissions rated through an unscientific yet unbiased manner will receive 500 Mobia (or a month sub on HI1 or HI2.)<br>
|
||||
B) Winners (or more) will be featured on the all Horse Isle websites.<br><br>
|
||||
|
||||
<B>Submit via Email by JUNE 6th 2020 to artcontest@horseisle.com :</B><br>
|
||||
A) Player Name<br>
|
||||
B) Which Game: HI3 / HI2 Eternal / HI2 LifeCycle / HI1<br>
|
||||
C) Title of art if one<br>
|
||||
D) Attach a jpg or png of reasonable size (<1mb)<BR><BR><B>[ April 11, 2020 ] <FONT COLOR=880000>Quarantine Update</FONT>:</B><BR> Here's a small update to help those of us that are stuck at home. Thanks to all of you that still continue to play and those that have come back or are checking it out for the first time!<br><br>New breed: Camarillo White Horse<br>Two new quests<br>The Easter Bunny has a gift for all! Do not get too attached though, this special companion will slowly be eaten throughout May, and eventually disappear. It's a little late, but it will still be around for a little bit, even if it starts getting eaten right away. :)<br><br>Enjoy and stay safe and healthy!<br>-Joe, Miranda and Team<BR><BR><B>[ June 3, 2019 ] <FONT COLOR=880000>HI3 Playername Protection</FONT>:</B><BR> In a few days we will remove the HI3 new account protections on existing HI1 & 2 playernames. Please be sure you have registered an account even if you are not playing yet, but would like to reserve your account. (Mac users, etc) <br>Thanks! <BR><BR></TD></TR></TABLE><BR><?php
|
||||
for($i = 0; $i < count($news_list); $i++)
|
||||
{
|
||||
$news = $news_list[$i];
|
||||
|
||||
echo('<B> [ '.date("F j, Y",$news['date']).' ] <FONT COLOR=880000>'.$news['title'].'</FONT>:</B><BR> ');
|
||||
echo($news['contents'].'<BR><BR>');
|
||||
}
|
||||
?></TD></TR></TABLE><BR><?php
|
||||
if(is_logged_in()){
|
||||
if($_SESSION['ADMIN'] == 'YES'){
|
||||
echo("<HR><FORM METHOD=POST>Add a news post: TITLE:<INPUT TYPE=TEXT NAME=TITLE SIZE=30><BR><TEXTAREA NAME=CONTENT ROWS=4 COLS=60></TEXTAREA><BR><INPUT TYPE=SUBMIT VALUE='POST NEWS'><HR>");
|
||||
}
|
||||
}
|
||||
include("footer.php");
|
||||
?>
|
|
@ -1,162 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="http://horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "http://hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.adminforumpost {
|
||||
padding: 5px 20px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #BFE9C9;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
<FONT SIZE=+1><B>Horse Isle News</B></FONT><BR>
|
||||
Welcome to Horse Isle News. Changes and additions to game are posted here regularly. Newest entries are on top.
|
||||
<BR>
|
||||
|
||||
<TABLE WIDTH=80% BGCOLOR=FFAABB BORDER=0 CELLPADDING=4 CELLSPACING=0><TR><TD class=newslist><B>Most Recent Horse Isle News:</B> [ <A HREF=?NEWSALL=1>SHOW ALL</A> ]<BR><BR><B>[ October 20, 2020 ] <FONT COLOR=880000>HI1 No longer Sustainable</FONT>:</B><BR> To Our Loyal Players:<BR><BR>For a couple years now, HI1 has been losing money to keep it up. I have not had a problem with that, since I love the fact that many folks still enjoy it. However, with the recent incessant attacks and flash support getting "complicated", it just is no longer sustainable for us to continue running HI1. To this end, we are getting it back online one more time, restored to morning of oct 17th and extending everyone's subscriptions by 30 days, and suggesting that folks say their goodbyes over the next few weeks.
|
||||
<BR><BR><B>We do not recommend purchasing anything from the store</B> from now on, as the server could close at any time in the future. We have removed the year sub and currency options but will leave store open in case someone needs something to enjoy final days.
|
||||
<BR><BR>Thanks everyone for having a fun adventure with us, and I wish it could have continued! <br>-Joe and Miranda<BR><BR><B>[ September 19, 2020 ] <FONT COLOR=880000>Horse Isle 1 Compromise</FONT>:</B><BR> Deja vu
|
||||
|
||||
Unfortunately, some troublemakers made a mess of HI1 Again.<BR>We have reverted to a backup from 4am PST and taken some additional precautions. So, anything you "did" this morning was reverted.<br>We have also given all subs +24hrs to cover the down time.<br><br>Because passwords for accounts were likely compromised, we setup a system to verify and unlock for players' protection. When you try to login you will be prompted to reset your password. We can automatically unlock most players' accounts, but some will require manual support via email. Just follow the directions and please be patient with us.<br><br>Sorry about the trouble. HI1 was never designed to survive so long into this new mean digital world. ;) The only thing these "Cracks" accomplish is getting us closer to having to close down HI1.<BR><BR><B>[ June 23, 2020 ] <FONT COLOR=880000>Horse Isle 1 Compromise</FONT>:</B><BR> Unfortunately, some troublemakers made a mess of HI1.<BR>We have reverted to a backup from 4am PST and taken some precautions. So, anything you "did" this morning was reverted.<br>We have also given all subs +12hrs to cover the down time.<br><br>Because passwords for accounts were likely compromised, we setup a system to verify and unlock for players' protection. When you try to login you will be prompted to reset your password. We can automatically unlock most players' accounts, but some will require manual support via email. Just follow the directions and please be patient with us.<br><br>Sorry about the trouble. HI1 was never designed to survive so long into this new mean digital world. ;)<br><br>P.S. The XSS alert was a simple javascript alert, just meaningless and harmless.<br><br>Thanks!<BR><BR><B>[ June 9, 2020 ] <FONT COLOR=880000>2020 Fan Art Contest</FONT>:</B><BR> Thanks to everyone that participated in the 2020 Fan Art Contest.<br><br>
|
||||
|
||||
Everyone that submitted artwork has been credited 500 mobia or a month sub on HI1/2. It was all very creative and fun to look through! The various media is great. Socks and Chocolate and more! We did not bother trying to rank or sort in any way, it was all good! And some real talent in the submissions.<br><br>
|
||||
|
||||
See the submissions for yourself here: <A HREF=http://horsesareawesome.com/fa4/>http://HorsesAreAwesome.com</A> <br>
|
||||
Thank you to everyone that participated!<br>-Joe, Miranda and team<BR><BR><B>[ May 5, 2020 ] <FONT COLOR=880000>Fan Art Contest</FONT>:</B><BR> To celebrate our One Year Anniversary for HI3 and give folks a fun distraction, let's have an art contest! Devs will select winners based on several different criteria, from most original, to happy feeling, etc. So selection will be slightly random but will favor effort and creativity.<br><br>
|
||||
|
||||
<B>Rules:</B><br>
|
||||
A) Make something inspired by the world of Horse Isle.<br>
|
||||
B) Any thing that can be captured in a digital image.<br>
|
||||
C) Submissions must be all age appropriate.<br>
|
||||
D) New artwork created BY YOU for this contest.<br>
|
||||
E) Single submission per person.<br>
|
||||
F) By submitting you are giving Horse Isle full permission to display and use the image.<br><br>
|
||||
|
||||
<B>Awards:</B><br>
|
||||
A) Top 25 (or more) submissions rated through an unscientific yet unbiased manner will receive 500 Mobia (or a month sub on HI1 or HI2.)<br>
|
||||
B) Winners (or more) will be featured on the all Horse Isle websites.<br><br>
|
||||
|
||||
<B>Submit via Email by JUNE 6th 2020 to artcontest@horseisle.com :</B><br>
|
||||
A) Player Name<br>
|
||||
B) Which Game: HI3 / HI2 Eternal / HI2 LifeCycle / HI1<br>
|
||||
C) Title of art if one<br>
|
||||
D) Attach a jpg or png of reasonable size (<1mb)<BR><BR></TD></TR></TABLE><BR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue