Jump to content

Recommended Posts

Hi everyone,

I'm super new to PHP so forgive me if this post is silly. But I am creating an Admin panel for a website so the user can update news on their site. This is my code. It works excellent in FireFox but in IE it shows NOTHING! Can anyone see what my problem is in the code?

Here is the Admin Side try it in IE and FireFox to see what I mean:
http://www.nocomplyskateboarding.com/rebuild/panel/index.php?action=news.index

here's the code.
[code]
<TABLE width=100% align=left valign=top>
<TR>
<TD BACKGROUND="images/pagetitlebg.gif" height=40 valign=middle><img src="images/spacer.gif" width=15><span class="indexpagestitle">Post News</span>
</TD>
</TR>
</TABLE><Br>
<?php
//initilize PHP

if($_POST['submit']) //If submit is hit
{
   require("../config.php");

   // Convert all the Posts to Variables:
   $title = $_POST['title'];
   $message = $_POST['message'];
   $who = $_POST['who'];
   $date = $_POST['date'];
   $time = $_POST['time'];

   // Put the News into the Database:
   $result=MYSQL_QUERY("INSERT INTO news (id,title,message,who,date,time)".
      "VALUES ('NULL', '$title', '$message', '$who', '$date', '$time')");


   // Show the Confirmation Message
   echo "<span class=text><div align=center><br><br><br>The News was Successfully Posted!</div><br><br><br></span>";
}
else
{
// close php so we can put in our code
?>
<form method="post" action="?action=news.index">
<TABLE VALIGN=top ALIGN=CENTER cellpadding=3>
<TR>
   <TD class="formtext">TITLE:</TD>
   <TD><INPUT class=text MAXLENGTH=20 TYPE='TEXT' NAME='title' VALUE='' size=60></TD>
</TR>
<TR>
   <TD class="formtext" valign=top>MESSAGE:</TD>
   <TD><TEXTAREA class=text COLS='56' ROWS='10' NAME='message' VALUE='' size=45></textarea></TD>
</TR><br>
<TR>
   <TD class="formtext">NAME:</TD>
   <TD>
      <INPUT class=text TYPE='TEXT' NAME='who' VALUE='' size=60>
   </TD>
</TR>
<TR>
   <TD class="formtext">DATE:</TD>
   <TD>

      <INPUT class=text TYPE='TEXT' NAME='date' VALUE='<? echo date("M.j.y"); ?>' size=60>
   </TD>
</TR>
<TR>
   <TD class="formtext">TIME:</TD>
   <TD>

      <INPUT class=text TYPE='TEXT' NAME='time' VALUE='' size=60>
   </TD>
</TR>
<TR>
   <TD></TD><br>
   <TD><INPUT TYPE="submit" name="submit" value="Post News"></TD>
</TR>
</TABLE>
</form>
<br>

<?
} //close the else statement
?>

<TABLE WIDTH=635 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=2>
<IMG SRC="images/indexpages_01.jpg" WIDTH=391 HEIGHT=8 ALT=""></TD>
<TD ROWSPAN=2>
<IMG SRC="images/indexpages_02.jpg" WIDTH=32 HEIGHT=29 ALT=""></TD>
<TD>
<IMG SRC="images/indexpages_03.jpg" WIDTH=201 HEIGHT=8 ALT=""></TD>
<TD>
<IMG SRC="images/indexpages_04.jpg" WIDTH=11 HEIGHT=8 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/indexpages_05.jpg" WIDTH=12 HEIGHT=21 ALT=""></TD>
<TD BACKGROUND="images/indexpages_06.jpg" WIDTH379 HEIGHT=21>
<SPAN CLASS="indexpagestitle"> News Archives</SPAN>
</TD>
<TD BACKGROUND="images/indexpages_07.jpg" WIDTH=201 HEIGHT=21>
<SPAN CLASS="indexpagestitle">  Information</SPAN>
</TD>
<TD>
<IMG SRC="images/indexpages_08.jpg" WIDTH=11 HEIGHT=21 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=5>
<IMG SRC="images/indexpages_09.jpg" WIDTH=635 HEIGHT=9 ALT=""></TD>
</TR>
<TR>
<TD WIDTH=12 HEIGHT=100%>
</TD>
<TD WIDTH=379 HEIGHT=100% VALIGN=top ALIGN=left>
<!---// BEGIN ARCHIVES //--->
<img src="images/spacer.gif" Width=274 Height=5>

<?php require("../config.php");

//If cmd has not been initialized
if(!isset($cmd)) {
//display all the news
$result = mysql_query("select * from news order by id desc");
//run the while loop that grabs all the show dates
while($r=mysql_fetch_array($result)) {
//grab the title, message, who, date,  and the time of the news
$title=$r["title"];
$message=$r["message"];
$who=$r["who"];
$date=$r["date"];
$time=$r["time"];
//take out the title, message etc.
$id=$r["id"];
//take out the id
//make the title a link
echo "<table ALIGN=center VALIGN=top cellspacing=3 cellpadding=5 width='379' BACKGROUND='images/itembg.gif'><tr><td align=left valign=middle><span class=text>      Date: <B>$date</B>     Poster: <b>$who</b></td><td class=text valign=middle align=right><a href='news.edit.php?cmd=edit&id=$id&subnav=news'>      </a>  <a href='news.delete.php?cmd=delete&id=$id&subnav=news'>    </a></td></tr></table>";
}
} ?>




<!---// END ARCHIVES //--->
</TD>
<TD WIDTH=32 HEIGHT=100%>
</TD>
<TD WIDTH=201 HEIGHT=100% VALIGN=TOP>

<!---// BEGIN INFORMATION BAR //--->
<SPAN CLASS="text">
Welcome to the news room! If you find that you are having trouble with this system, please email support at <a href="mailto:info@tenfoldmedia.net">info@tenfoldmedia.net</a>.
</SPAN>
<br><Br>

<!---// END INFORMATION BAR //--->

</TD>
<TD WIDTH=11 HEIGHT=100%>
</TD>
</TR>
<TR>
<TD COLSPAN=5>
<IMG SRC="images/indexpages_15.jpg" WIDTH=635 HEIGHT=9 ALT=""></TD>
</TR>
</TABLE>


[/code]
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/
Share on other sites

The form is there!  The problem is not with your PHP it's with your layout.

It's not visible as your layout is incorrect.  If you open in the source in IE and do a search for 'title' you'll see that the form code is visible in the source.  I can only assume this is due to either your table layout or your style sheets.

Regards
Huggie
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/#findComment-130911
Share on other sites

I should have mentioned I have a header and a footer file on the top and bottom of that code as an include in the main index.php file. Here's the code all together.

[code]
<!-- BEGIN HEADER -->
<HTML>
<HEAD>
<TITLE>CMS PANEL | Content Management System</TITLE>
<link rel="stylesheet" type="text/css" href="css/control.css">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BACKGROUND="images/bg.gif" LEFTMARGIN=0 TOPMARGIN=5 MARGINWIDTH=0 MARGINHEIGHT=0>
<TABLE ALIGN=center WIDTH=700 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=18>
<IMG SRC="images/index_01.jpg" WIDTH=700 HEIGHT=18 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=9>
<IMG SRC="images/index_02.jpg" WIDTH=403 HEIGHT=14 ALT=""></TD>
<TD COLSPAN=7>
<IMG SRC="images/index_03.jpg" WIDTH=275 HEIGHT=14 ALT=""></TD>
<TD COLSPAN=2>
<IMG SRC="images/index_04.jpg" WIDTH=22 HEIGHT=14 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=2>
<IMG SRC="images/index_05.jpg" WIDTH=24 HEIGHT=88 ALT=""></TD>
<TD>
<a href="index.php"><IMG BORDER=0 SRC="images/index_06.jpg" WIDTH=85 HEIGHT=88 ALT="Go To: Index"></a></TD>
<TD COLSPAN=6>
<a href="index.php"><IMG BORDER=0 SRC="images/index_07.jpg" WIDTH=294 HEIGHT=88 ALT="Go To: Index"></a></TD>
<TD>
<IMG SRC="images/index_08.jpg" WIDTH=11 HEIGHT=88 ALT=""></TD>
<TD COLSPAN=5>
<IMG SRC="images/index_09.jpg" WIDTH=250 HEIGHT=88 ALT=""></TD>
<TD COLSPAN=3>
<IMG SRC="images/index_10.jpg" WIDTH=36 HEIGHT=88 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=9>
<IMG SRC="images/index_11.jpg" WIDTH=403 HEIGHT=17 ALT=""></TD>
<TD COLSPAN=9>
<IMG SRC="images/index_12.jpg" WIDTH=297 HEIGHT=17 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/index_13.jpg" WIDTH=8 HEIGHT=32 ALT=""></TD>
<TD COLSPAN=2>
<a href="index.php?action=news.index"><IMG BORDER=0 SRC="images/index_14.jpg" WIDTH=101 HEIGHT=32 ALT="Go To: NewsManager"></a></TD>
<TD>
<IMG SRC="images/index_15.jpg" WIDTH=10 HEIGHT=32 ALT=""></TD>
<TD>
<a href="index.php?action=photo.index"><IMG BORDER=0 SRC="images/index_16.jpg" WIDTH=111 HEIGHT=32 ALT="Go To: PhotoManager"></a></TD>
<TD>
<IMG SRC="images/index_17.jpg" WIDTH=10 HEIGHT=32 ALT=""></TD>
<TD>
<a href="index.php?action=event.index"><IMG BORDER=0 SRC="images/index_18.jpg" WIDTH=109 HEIGHT=32 ALT="Go To: EventManager"></a></TD>
<TD>
<IMG SRC="images/index_19.jpg" WIDTH=12 HEIGHT=32 ALT=""></TD>
<TD COLSPAN=3>
<a href="index.php?action=link.index"><IMG BORDER=0 SRC="images/index_20.jpg" WIDTH=108 HEIGHT=32 ALT="Go To: LinkManager"></a></TD>
<TD>
<IMG SRC="images/index_21.jpg" WIDTH=14 HEIGHT=32 ALT=""></TD>
<TD>
<a href="index.php?action=media.index"><IMG BORDER=0 SRC="images/index_22.jpg" WIDTH=105 HEIGHT=32 ALT="Go To: MediaManager"></a></TD>
<TD>
<IMG SRC="images/index_23.jpg" WIDTH=14 HEIGHT=32 ALT=""></TD>
<TD COLSPAN=3>
<a href="index.php?action=other.index"><IMG BORDER=0 SRC="images/index_24.jpg" WIDTH=86 HEIGHT=32 ALT="Go To: Manage Other Pages"></a></TD>
<TD>
<IMG SRC="images/index_25.jpg" WIDTH=12 HEIGHT=32 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=18>
<IMG SRC="images/index_26.jpg" WIDTH=700 HEIGHT=8 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/index_27.jpg" WIDTH=8 HEIGHT=18 ALT=""></TD>
<TD COLSPAN=16 BACKGROUND="images/index_28.jpg" WIDTH=680 HEIGHT=18>
</TD>
<TD>
<IMG SRC="images/index_29.jpg" WIDTH=12 HEIGHT=18 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=18>
<IMG SRC="images/index_30.jpg" WIDTH=700 HEIGHT=12 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=2 BACKGROUND="images/index_31.jpg" WIDTH=24 HEIGHT=100%>
</TD>
<TD COLSPAN=14 BACKGROUND="images/index_32.jpg" WIDTH=654 HEIGHT=400 VALIGN=top>




<!-- END HEADER -->


<!-- BEING CONTENT -->
<TABLE width=100% align=left valign=top>
<TR>
<TD BACKGROUND="images/pagetitlebg.gif" height=40 valign=middle><img src="images/spacer.gif" width=15><span class="indexpagestitle">Post News</span>
</TD>
</TR>
</TABLE><Br>
<?php
//initilize PHP

if($_POST['submit']) //If submit is hit
{
   require("../config.php");

   // Convert all the Posts to Variables:
   $title = $_POST['title'];
   $message = $_POST['message'];
   $who = $_POST['who'];
   $date = $_POST['date'];
   $time = $_POST['time'];

   // Put the News into the Database:
   $result=MYSQL_QUERY("INSERT INTO news (id,title,message,who,date,time)".
      "VALUES ('NULL', '$title', '$message', '$who', '$date', '$time')");


   // Show the Confirmation Message
   echo "<span class=text><div align=center><br><br><br>The News was Successfully Posted!</div><br><br><br></span>";
}
else
{
// close php so we can put in our code
?>
<form method="post" action="?action=news.index">
<TABLE VALIGN=top ALIGN=CENTER cellpadding=3>
<TR>
   <TD class="formtext">TITLE:</TD>
   <TD><INPUT class=text MAXLENGTH=20 TYPE='TEXT' NAME='title' VALUE='' size=60></TD>
</TR>
<TR>
   <TD class="formtext" valign=top>MESSAGE:</TD>
   <TD><TEXTAREA class=text COLS='56' ROWS='10' NAME='message' VALUE='' size=45></textarea></TD>
</TR><br>
<TR>
   <TD class="formtext">NAME:</TD>
   <TD>
      <INPUT class=text TYPE='TEXT' NAME='who' VALUE='' size=60>
   </TD>
</TR>
<TR>
   <TD class="formtext">DATE:</TD>
   <TD>

      <INPUT class=text TYPE='TEXT' NAME='date' VALUE='<? echo date("M.j.y"); ?>' size=60>
   </TD>
</TR>
<TR>
   <TD class="formtext">TIME:</TD>
   <TD>

      <INPUT class=text TYPE='TEXT' NAME='time' VALUE='' size=60>
   </TD>
</TR>
<TR>
   <TD></TD><br>
   <TD><INPUT TYPE="submit" name="submit" value="Post News"></TD>
</TR>
</TABLE>
</form>
<br>

<?
} //close the else statement
?>

<TABLE WIDTH=635 BORDER=0 CELLPADDING=0 CELLSPACING=0>
<TR>
<TD COLSPAN=2>
<IMG SRC="images/indexpages_01.jpg" WIDTH=391 HEIGHT=8 ALT=""></TD>
<TD ROWSPAN=2>
<IMG SRC="images/indexpages_02.jpg" WIDTH=32 HEIGHT=29 ALT=""></TD>
<TD>
<IMG SRC="images/indexpages_03.jpg" WIDTH=201 HEIGHT=8 ALT=""></TD>
<TD>
<IMG SRC="images/indexpages_04.jpg" WIDTH=11 HEIGHT=8 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/indexpages_05.jpg" WIDTH=12 HEIGHT=21 ALT=""></TD>
<TD BACKGROUND="images/indexpages_06.jpg" WIDTH379 HEIGHT=21>
<SPAN CLASS="indexpagestitle"> News Archives</SPAN>
</TD>
<TD BACKGROUND="images/indexpages_07.jpg" WIDTH=201 HEIGHT=21>
<SPAN CLASS="indexpagestitle">  Information</SPAN>
</TD>
<TD>
<IMG SRC="images/indexpages_08.jpg" WIDTH=11 HEIGHT=21 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=5>
<IMG SRC="images/indexpages_09.jpg" WIDTH=635 HEIGHT=9 ALT=""></TD>
</TR>
<TR>
<TD WIDTH=12 HEIGHT=100%>
</TD>
<TD WIDTH=379 HEIGHT=100% VALIGN=top ALIGN=left>
<!---// BEGIN ARCHIVES //--->
<img src="images/spacer.gif" Width=274 Height=5>

<?php require("../config.php");

//If cmd has not been initialized
if(!isset($cmd)) {
//display all the news
$result = mysql_query("select * from news order by id desc");
//run the while loop that grabs all the show dates
while($r=mysql_fetch_array($result)) {
//grab the title, message, who, date,  and the time of the news
$title=$r["title"];
$message=$r["message"];
$who=$r["who"];
$date=$r["date"];
$time=$r["time"];
//take out the title, message etc.
$id=$r["id"];
//take out the id
//make the title a link
echo "<table ALIGN=center VALIGN=top cellspacing=3 cellpadding=5 width='379' BACKGROUND='images/itembg.gif'><tr><td align=left valign=middle><span class=text>      Date: <B>$date</B>     Poster: <b>$who</b></td><td class=text valign=middle align=right><a href='news.edit.php?cmd=edit&id=$id&subnav=news'>      </a>  <a href='news.delete.php?cmd=delete&id=$id&subnav=news'>    </a></td></tr></table>";
}
} ?>




<!---// END ARCHIVES //--->
</TD>
<TD WIDTH=32 HEIGHT=100%>
</TD>
<TD WIDTH=201 HEIGHT=100% VALIGN=TOP>

<!---// BEGIN INFORMATION BAR //--->
<SPAN CLASS="text">
Welcome to the news room! If you find that you are having trouble with this system, please email support at <a href="mailto:info@tenfoldmedia.net">info@tenfoldmedia.net</a>.
</SPAN>
<br><Br>

<!---// END INFORMATION BAR //--->

</TD>
<TD WIDTH=11 HEIGHT=100%>
</TD>
</TR>
<TR>
<TD COLSPAN=5>
<IMG SRC="images/indexpages_15.jpg" WIDTH=635 HEIGHT=9 ALT=""></TD>
</TR>
</TABLE>


<!-- END CONTENT -->





<!-- BEGIN FOOTER -->









</TD>
<TD COLSPAN=2 BACKGROUND="images/index_33.jpg" WIDTH=22 HEIGHT=100%>
</TD>
</TR>
<TR>
<TD COLSPAN=2 ROWSPAN=2>
<IMG SRC="images/index_34.jpg" WIDTH=24 HEIGHT=27 ALT=""></TD>
<TD ALIGN=right COLSPAN=14 BACKGROUND="images/index_35.jpg" WIDTH=654 HEIGHT=18>
<span class="footer">
CMS PANEL IS THE PROPERTY OF <a href="http://www.tenfoldmedia.net" target=new>TENFOLD MEDIA</a> © 2006.


</span>
</TD>
<TD COLSPAN=2 ROWSPAN=2>
<IMG SRC="images/index_36.jpg" WIDTH=22 HEIGHT=27 ALT=""></TD>
</TR>
<TR>
<TD COLSPAN=14>
<IMG SRC="images/index_37.jpg" WIDTH=654 HEIGHT=9 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=8 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=16 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=85 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=10 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=111 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=10 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=109 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=12 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=42 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=11 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=55 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=14 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=105 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=14 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=62 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=14 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=10 HEIGHT=1 ALT=""></TD>
<TD>
<IMG SRC="images/spacer.gif" WIDTH=12 HEIGHT=1 ALT=""></TD>
</TR>
</TABLE>
</BODY>
</HTML>
<!-- END FOOTER -->
[/code]

Basically all of the php code is in the two [code]<TD></TD>[/code] tags.
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/#findComment-130924
Share on other sites

Ok, is the "Post News" button the part that's not showing?

If so, could be because of the <TD></TD><br> tags just before that cell. IE complains about empty cells sometimes. And that <br> tag makes no sense - it's not inside a cell!

Try either this:<TD>&nbsp;</TD> or this: <TR><TD colspan="2"><INPUT TYPE="submit" name="submit" value="Post News"></TD></TR>

And get thee to a remedial table building tutorial.
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/#findComment-130950
Share on other sites

[quote author=Davka link=topic=116452.msg474474#msg474474 date=1164643209]
Ok, is the "Post News" button the part that's not showing?

If so, could be because of the <TD></TD><br> tags just before that cell. IE complains about empty cells sometimes. And that <br> tag makes no sense - it's not inside a cell!

Try either this:<TD>&nbsp;</TD> or this: <TR><TD colspan="2"><INPUT TYPE="submit" name="submit" value="Post News"></TD></TR>

And get thee to a remedial table building tutorial.
[/quote]

No, it's the entire form that isn't showing up. Check it out in IE then open the link in FireFox... weird that FF will show it but not IE.

I don't see what you guys are saying about the table building, though. I cut everything in Photoshop and export it. Then I make my inside layout, cut it up and paste it between the table data tags. Everything should be fine with the tables....
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/#findComment-130962
Share on other sites

It seems as though when I take out this part of the code:

[code]
<TABLE width=100% align=left valign=top>
<TR>
<TD BACKGROUND="images/pagetitlebg.gif" height=40 valign=middle><img src="images/spacer.gif" width=15><span class="indexpagestitle">Post News</span>
</TD>
</TR>
</TABLE><br>[/code]

It appears.... how can I keep this table in there without it disappearing?? And why does it work with FireFox?
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/#findComment-130972
Share on other sites

Wow.... Ok... THIS WORKS... adding more < br> tags....

[code]
<TABLE width=100% align=left valign=top>
<TR>
<TD BACKGROUND="images/pagetitlebg.gif" height=40 valign=middle><img src="images/spacer.gif" width=15><span class="indexpagestitle">Post News</span>
</TD>
</TR>
</TABLE><Br><br><br>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/28614-ie-vs-firefox-error/#findComment-130977
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.