Jump to content
MakeWebGames

Newbiiee Coder

Members
  • Posts

    22
  • Joined

  • Last visited

    Never

Everything posted by Newbiiee Coder

  1. Re: [Mccode v2] Slide Menu   Well It Isnt Realy Hard , Just Do As It Ses Above...
  2. Re: [Mccode v2] Slide Menu No SQL :-D Pleasee All Comment !
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript" src="ddaccordion.js"> </script> <script type="text/javascript"> ddaccordion.init({ headerclass: "submenuheader", //Shared CSS class name of headers group contentclass: "submenu", //Shared CSS class name of contents group revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click", "clickgo", or "mouseover" mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover collapseprev: true, //Collapse previous content (so only one open at any time)? true/false defaultexpanded: [], //index of content(s) open by default [index1, index2, etc] [] denotes no content onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed) animatedefault: false, //Should contents open by default be animated into view? persiststate: true, //persist state of opened contents within browser session? toggleclass: ["", ""], //Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"] togglehtml: ["suffix", "[img=plus.gif]", "[img=minus.gif]"], //Additional HTML added to the header when it's collapsed and expanded, respectively ["position", "html1", "html2"] (see docs) animatespeed: "fast", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow" oninit:function(headers, expandedindices){ //custom code to run when headers have initalized myiframe=window.frames["myiframe"] if (expandedindices.length>0) //if there are 1 or more expanded headers myiframe.location.replace(headers[expandedindices.pop()].getAttribute('href')) //Get "href" attribute of final expanded header to load into IFRAME }, onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed if (state=="block" && isuseractivated==true){ //if header is expanded and as the result of the user initiated action myiframe.location.replace(header.getAttribute('href')) } } }) </script> <style type="text/css"> .glossymenu{ margin: 5px 0; padding: 0; width: 170px; /*width of menu*/ border: 1px solid #9A9A9A; border-bottom-width: 0; } .glossymenu a.menuitem{ background: black url(glossyback.gif) repeat-x bottom left; font: bold 14px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif; color: white; display: block; position: relative; /*To help in the anchoring of the ".statusicon" icon image*/ width: auto; padding: 4px 0; padding-left: 10px; text-decoration: none; } .glossymenu a.menuitem:visited, .glossymenu .menuitem:active{ color: white; } .glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/ position: absolute; top: 5px; right: 5px; border: none; } .glossymenu a.menuitem:hover{ background-image: url(glossyback2.gif); } .glossymenu div.submenu{ /*DIV that contains each sub menu*/ background: white; } .glossymenu div.submenu ul{ /*UL of each sub menu*/ list-style-type: none; margin: 0; padding: 0; } .glossymenu div.submenu ul li{ border-bottom: 1px solid blue; } .glossymenu div.submenu ul li a{ display: block; font: normal 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif; color: black; text-decoration: none; padding: 2px 0; padding-left: 10px; } .glossymenu div.submenu ul li a:hover{ background: #DFDCCB; colorz: white; } </style> </head> <body> <div class="glossymenu"> [url="donator.php"]Donate[/url] [url="#"]Actions[/url] <div class="submenu"> <ul> [*][url='index.php']Home[/url] [*][url='inventory.php']Inventory[/url] [*][url='hospital.php']Hospital[/url] [*][url='explore.php']Explore[/url] [*] [*][url='events.php']Events[/url] [*][url='mailbox.php']Mailbox[/url] [*][url='gym.php']Gym[/url] [*][url='hospital.php']Hospital[/url] [*][url='criminal.php']Crimes[/url] [*][url='job.php']Your Job[/url] [*][url='education.php']Local School[/url] [*][url='ann.php']Announcements[/url] [*] [url='newspaper.php']Newspaper[/url] [*][url='search.php']Search[/url] [*][url='yourgang.php']Your Gang[/url] [*][url='staff.php']Staff Panel[/url] [*] Account Details [url='preferences.php?action=sexchange']Sex Change[/url] [url='preferences.php?action=passchange']Password Change[/url] [url='preferences.php?action=namechange']Name Change[/url] [url='preferences.php?action=picchange']Display Pic Change[/url] [url='preferences.php?action=forumchange']Forum Info Change[/url] [/list] </div> </body> </html> HTMl But Works Fine , Not Exacly Got all Links On But :/ Works fine For Me :) :roll: Upload This File -> http://dynamicdrive.com/dynamicindex17/ddaccordion.js Name FIle - ddaccordion.js , also upload this image's Upload Twice And Name 1 glossyback and the other 1 glossyback2 Simpless !
  4. Re: [mccode v2] Owner Panel Haha , youll never be a owner :| Wht The H*ll...
  5. Re: [self Made] New Login Page Nope the page wroks fine anyway
  6. Re: [self Made] New Login Page All Comment Please :mrgreen:
  7. Print screen will be posted soon :roll:   <?php session_start(); include_once"includes/db_connect.php"; if (strip_tags($_GET['logout']) == "yes"){ session_destroy(); }elseif (isset($_SESSION['username'])){ header("Location: logged_in.php"); exit(); } if ($_POST['Submit'] && strip_tags($_POST['username']) && strip_tags($_POST['password'])){ $username = addslashes(strip_tags($_POST['username'])); $password = addslashes(strip_tags($_POST['password'])); $ip = $REMOTE_ADDR; ///check INFO $sql = mysql_query("SELECT * FROM users WHERE username='$username' AND password='$password' AND activated='1' LIMIT 1"); $login_check = mysql_num_rows($sql); $inf = mysql_fetch_object($sql); if ($login_check == "0"){ $message="You could not be logged in"; }elseif ($login_check != "0"){ if ($login_check > "0"){ if ($inf->status == "Dead"){ include_once"dead.php"; exit(); } if ($inf->status == "Banned"){ $encoded=md5(strtolower($username)); header("Location: ipban.php?banned=$username&encoded=$encoded"); exit(); } session_register('username'); $_SESSION['username'] = $inf->username; $timestamp = time()+60; mysql_query("UPDATE users SET online='$timestamp' WHERE username='$username'"); mysql_query("UPDATE users SET l_ip='$ip' WHERE username='$username'"); header("Location: logged_in.php"); } else { $message= "You could not be logged in. "; }}} $total_regged=mysql_num_rows(mysql_query("SELECT * FROM users")); $admins=mysql_num_rows(mysql_query("SELECT * FROM users WHERE userlevel='2'")); $mods=mysql_num_rows(mysql_query("SELECT * FROM users WHERE userlevel='1'")); $iti=mysql_fetch_object(mysql_query("SELECT * FROM site_stats WHERE id='1'")); $most=$iti->online; ?> <style type="text/css"> <!-- .style1 { color: #FFFFFF; font-weight: bold; font-size: 10px; } body { background-image: url(file:///C|/Users/Admin/Downloads/gp_bg_lines.gif); } --> </style> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <html> <head> <title>Game Name || Please Login</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body leftmargin="0" background-image="images/bg.jpg" topmargin="0" marginwidth="0" marginheight="0"> <div align="center"> <form name="form1" method="post" action=""> </p> <div align="center">Game Banner Here!</div> <table width="800" height="667" background="images/modernmoberlogin.png" border="0" align="center"> <tr> <td height="45" colspan="2" align="left" valign="top"><table width="95%" border="1" align="center" cellpadding="2" cellspacing="0" class="thinline"> <tr class="topic"> <td width="33%" height="18" background=includes/grad.jpg align="center" >Register</td> <td width="33%" height="18" align="center" background=includes/grad.jpg >Contact (Game Name)</td> <td height="18" align="center" background=includes/grad.jpg >Screenshots</td> </tr> <tr> <td align="center">[url="register.php"]Click Here![/url]</td> <td align="center">[url="contact.php"]Click Here![/url]</td> <td align="center">[url="screen.php"]Click Here![/url]</td> </tr> </table></td> </tr> <tr> <td width="420" height="226" align="left" valign="top"> <table width=80%> <tr> <td> <fieldset> <legend></legend> Welcome To (Game Name) </p> </p> Descrioption Here</p> </p> </p> </fieldset></td></tr></table> <h3> </h3> </p></td> <td width="370" align="center" valign="middle"> <u>[b][/b]</u> </p> <table width="64%" border="1" cellpadding="2" cellspacing="0" class="thinline"> <tr> <td height=18 colspan=5 background=includes/grad.jpg td align="center">Login to Game Name!</td> </tr> <tr> <td align="center"> [b]Username: <input name="username" type="text" id="username" value="" size="20" class="textbox" maxlength="40" /> Password: <input name="password" type="password" size="20" id="password" value="" class="textbox" maxlength="40" />[/b] <input type="submit" name="Submit" class="button" value="Login" /> </td> </tr> </table> </td> </tr> <tr> <td height="382"></td> <td align="center" valign="top"> </p> <table width="91%" border="1" cellpadding="2" cellspacing="0" class="thinline"> <tr> [b] By Entering MM, You Agree To The [url="tos.php"]TOS[/url].[/b] <p align="center">We recommend that you use [url="http://www.filehippo.com/download_safari/download/285b10705672f729c8b80cbb732936fd/"]Safari[/url] for ultimate performance and style of MM.</p> </p> </td> </tr> </table> </p> </td> </tr> </table> </form> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="includes/in.css" type="text/css"> </head> <body> <table align="center" width="286" CELLSPACING="0" CELLPADDING="2" BORDERCOLOR="black" BORDER="1" CLASS="thinline"> <tr> </tr> </body> </html>
  8. Re: New explore city (HTML) I didnt add links incase of they wasnt right becos some people change file name e.g explore.php to city.php
  9. Re: New explore city (HTML)   Will Do M8 :P Thnks For Compliments. Ill Do That Next Time
  10. Re: New explore city (HTML) Sorry About Quality But Its Perfect When Being Used Lol, All Comment please :mrgreen: Downlload Attached Image (For Background) Or Use Ure Own Game Backgroud!
  11. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <link rel="stylesheet" href="in.css" type="text/css"> <link href="in.css" rel="stylesheet" type="text/css"> <title>explore city new page</title> </head> <body style="background-image: url(../images/bg.jpg);"> <div style="text-align: center; color: rgb(204, 204, 204); font-weight: bold;"><input name="PHPSESSID" value="4e63876525db037cce2678d502054ca2" type="hidden"></div> <div style="text-align: center;"><span style="color: rgb(204, 204, 204); font-weight: bold;">Welcome To [Youre Game Name] City.</span><br style="color: rgb(204, 204, 204); font-weight: bold;"> <span style="color: rgb(204, 204, 204); font-weight: bold;"> While Exploring You Notice Some Usefull Stores</span><br style="color: rgb(204, 204, 204); font-weight: bold;"> <table style="text-align: left; width: 1190px; height: 431px;" border="1" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="text-align: center;">Search And Kill</td> <td style="text-align: center;">Users Online</td> <td style="text-align: center;">Find Users</td> <td style="text-align: center;">Commit Crime</td> <td style="text-align: center;">Commit GTA</td> <td style="text-align: center;">Credit's</td> </tr> <tr> <td style="text-align: center;">Domination</td> <td style="text-align: center;">Bullet Factory</td> <td style="text-align: center;">Underground</td> <td style="text-align: center;">Inbox</td> <td style="text-align: center;">Send Message</td> <td style="text-align: center;">Forum</td> </tr> <tr> <td style="text-align: center;">Player Status</td> <td style="text-align: center;">Chase</td> <td style="text-align: center;">Drugs</td> <td style="text-align: center;">Crew Forum</td> <td style="text-align: center;">Crews</td> <td style="text-align: center;">Youre Crew</td> </tr> <tr> <td style="text-align: center;">Sell</td> <td style="text-align: center;">OC</td> <td style="text-align: center;">Getaway</td> <td style="text-align: center;">Extortion</td> <td style="text-align: center;">Missions</td> <td style="text-align: center;">Hospital</td> </tr> <tr> <td style="text-align: center;">Travel</td> <td style="text-align: center;">Gym</td> <td style="text-align: center;">Jail</td> <td style="text-align: center;">Bank</td> <td style="text-align: center;">News</td> <td style="text-align: center;">Newspaper</td> </tr> <tr> <td style="text-align: center;">Help Desk</td> <td style="text-align: center;">Hitlist</td> <td style="text-align: center;">Attempts</td> <td style="text-align: center;">Safehouse</td> <td style="text-align: center;">Garage</td> <td style="text-align: center;">Casino</td> </tr> </tbody> </table> . </div> </p> </body> </html> Screen Shot::
×
×
  • Create New...