Jump to content
MakeWebGames

Mainmenu...


DELETE-ME-NOW-

Recommended Posts

Ok. SO i got a new mainmenu here, but the thing is. Im having problems accualy making it more compatible with MCCodes. For examle, adding the jailcount bit at the top and all that... eg,

global $db,$c,$ir, $set;

$hc=$set['hospital_count'];

$jc=$set['jail_count'];

$ec=$ir['new_events'];

$mc=$ir['new_mail'];

if($ir['hospital'])

When i add that to the code, im getting unexpected <...

my main menu code is here:

 

<style type="text/css">
body {font-family:Arial, Helvetica, sans-serif, Tahoma; font-size:12px;}


#vertmenu {
font-family: Arial, Helvetica, sans-serif, Tahoma;
font-size: 100%;
width: 200px;
padding: 0px;
margin: 0px;
}

#vertmenu h1 {
display: block;
background-color:#FF9900;
font-size: 100%;
padding: 3px 0 5px 3px;
border: 1px solid #000000;
color: #333333;
margin: 0px;
width:205px;
}

#vertmenu ul {
list-style: none;
margin: 0px;
padding: 0px;
border: none;
}
#vertmenu ul li {
margin: 0px;
padding: 0px;
}
#vertmenu ul li a {
font-size: 100%;
display: block;
border-bottom: 1px dashed #C39C4E;
padding: 5px 0px 2px 4px;
text-decoration: none;
color: #666666;
width:205px;
}

#vertmenu ul li a:hover, #vertmenu ul li a:focus {
color: #000000;
background-color: #eeeeee;
}

</style>
</head>

<body>
<div id="vertmenu">
<h1>Player Menu</h1>
<ul>
[*][url="index.php"]Home[/url]
[*][url="explore.php"]Explore[/url]
[*][url="citybank.php"]Bank[/url]
[*][url="crimes.php"]Crimes[/url]
[*][url="gym.php"]Gym[/url]
[*][url="yourgang.php"]Your Gang[/url]
[*][url="inventory.php"]Inventory[/url]
[*][url="events.php"]Events[/url]
[*][url="jail.php"]Jail[/url]
[*][url="hospital.php"]Hospital[/url]
[*][url="search.php"]Search[/url]
[/list]
</div>
<div id="vertmenu">
<h1>Communication</h1>
<ul>
[*][url="mailbox.php"]Mailbox[/url]
[*][url="forum.php"]Forum[/url]
[*][url="X.php"]Chat Room[/url]
[/list]
</div>
<div id="vertmenu">
<h1>Account Settings</h1>
<ul>
[*][url="preferences.php"]Preferences[/url]
[*][url="notepad.php"]Notes[/url]
[/list]
</div>

 

If someone could assist me sort it, then it would be great. Also, other people can use the finished code on there game too if they want too :)

Link to comment
Share on other sites

just curious is that the entire file?

<?php
include_once('globals.php');
    global $db,$c,$ir, $set;
	$hc = $set['hospital_count'];
	$jc = $set['jail_count'];
	$ec = $ir['new_events'];
	$mc = $ir['new_mail'];

echo <<<MainMenu
<style type="text/css">
body {font-family:Arial, Helvetica, sans-serif, Tahoma; font-size:12px;}


#vertmenu {
font-family: Arial, Helvetica, sans-serif, Tahoma;
font-size: 100%;
width: 200px;
padding: 0px;
margin: 0px;
}

#vertmenu h1 {
display: block;
background-color:#FF9900;
font-size: 100%;
padding: 3px 0 5px 3px;
border: 1px solid #000000;
color: #333333;
margin: 0px;
width:205px;
}

#vertmenu ul {
list-style: none;
margin: 0px;
padding: 0px;
border: none;
}
#vertmenu ul li {
margin: 0px;
padding: 0px;
}
#vertmenu ul li a {
font-size: 100%;
display: block;
border-bottom: 1px dashed #C39C4E;
padding: 5px 0px 2px 4px;
text-decoration: none;
color: #666666;
width:205px;
}

#vertmenu ul li a:hover, #vertmenu ul li a:focus {
color: #000000;
background-color: #eeeeee;
}

</style>
</head>

<body>
<div id="vertmenu">
<h1>Player Menu</h1>
<ul>
[*][url="index.php"]Home[/url]
[*][url="explore.php"]Explore[/url]
[*][url="citybank.php"]Bank[/url]
[*][url="crimes.php"]Crimes[/url]
[*][url="gym.php"]Gym[/url]
[*][url="yourgang.php"]Your Gang[/url]
[*][url="inventory.php"]Inventory[/url]
[*][url="events.php"]Events[/url]
[*][url="jail.php"]Jail[/url]
[*][url="hospital.php"]Hospital[/url]
[*][url="search.php"]Search[/url]
[/list]
</div>
<div id="vertmenu">
<h1>Communication</h1>
<ul>
[*][url="mailbox.php"]Mailbox[/url]
[*][url="forum.php"]Forum[/url]
[*][url="X.php"]Chat Room[/url]
[/list]
</div>
<div id="vertmenu">
<h1>Account Settings</h1>
<ul>
[*][url="preferences.php"]Preferences[/url]
[*][url="notepad.php"]Notes[/url]
[/list]
</div>
MainMenu;
?>

 

Maybe best to review the existing mainmenu file for ideas and maybe not use the heredoc but actual echos

Link to comment
Share on other sites

<?php
include_once('globals.php');
global $db,$c,$ir, $set;
$hc = $set['hospital_count'];
$jc = $set['jail_count'];
$ec = $ir['new_events'];
$mc = $ir['new_mail'];
?>

<style>
body {font-family:Arial, Helvetica, sans-serif, Tahoma; font-size:12px;}


#vertmenu {
font-family: Arial, Helvetica, sans-serif, Tahoma;
font-size: 100%;
width: 200px;
padding: 0px;
margin: 0px;
}

#vertmenu h1 {
display: block;
background-color:#FF9900;
font-size: 100%;
padding: 3px 0 5px 3px;
border: 1px solid #000000;
color: #333333;
margin: 0px;
width:205px;
}

#vertmenu ul {
list-style: none;
margin: 0px;
padding: 0px;
border: none;
}
#vertmenu ul li {
margin: 0px;
padding: 0px;
}
#vertmenu ul li a {
font-size: 100%;
display: block;
border-bottom: 1px dashed #C39C4E;
padding: 5px 0px 2px 4px;
text-decoration: none;
color: #666666;
width:205px;
}

#vertmenu ul li a:hover, #vertmenu ul li a:focus {
color: #000000;
background-color: #eeeeee;
}

</style>
</head>

<body>
<div id="vertmenu">
<h1>Player Menu</h1>
<ul>
[*][url="index.php"]Home[/url]
[*][url="explore.php"]Explore[/url]
[*][url="citybank.php"]Bank[/url]
[*][url="crimes.php"]Crimes[/url]
[*][url="gym.php"]Gym[/url]
[*][url="yourgang.php"]Your Gang[/url]
[*][url="inventory.php"]Inventory[/url]
[*][url="events.php"]Events[/url]
[*][url="jail.php"]Jail[/url]
[*][url="hospital.php"]Hospital[/url]
[*][url="search.php"]Search[/url]
[/list]
</div>
<div id="vertmenu">
<h1>Communication</h1>
<ul>
[*][url="mailbox.php"]Mailbox[/url]
[*][url="forum.php"]Forum[/url]
[*][url="X.php"]Chat Room[/url]
[/list]
</div>
<div id="vertmenu">
<h1>Account Settings</h1>
<ul>
[*][url="preferences.php"]Preferences[/url]
[*][url="notepad.php"]Notes[/url]
[/list]
</div>

Just open PHP tags for the php you need.

Then to use those variables set

[url="blah.php"]<?php echo number_format($mailCount); ?>[/url]
Link to comment
Share on other sites

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.   Paste as plain text instead

  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...