Jump to content
MakeWebGames

DELETE-ME-NOW-

Members
  • Posts

    152
  • Joined

  • Last visited

    Never

DELETE-ME-NOW-'s Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello. I recently just purchased a chat script for my game, but im having trouble trying to even get it to work! Nothing comes up, or it blocks scrolling on the page. Heres the script: <link type="text/css" rel="stylesheet" media="all" href="./chat/css.php" charset="utf-8" /> <script type="text/javascript" src="./chat/js.php" charset="utf-8"></script>   Ive been trying to add it to loads of different places of header.php, but all have failed :( If someone could help me then that would be great!
  2. Looking Good!
  3. As i went through them, they got alot better. I liked the old diary one. But i would consider making the login boxes a bit smaller. But alot of potential here!
  4. Got a bit bored and made a login on photoshop. Feel free to use it. Yea shit i know. But ohh well ;) Download PSD
  5. Lol. Im not sure how i didnt see that lol... So what would go instead of $q?
  6. Thanks for the advice Armageddon. As ive never acualy used tables before, this code was referenced from my criminal.php file... So $q is prob something to do with crimes lol... Is that what is causing the table not to show properly?
  7. <?php include 'globals.php'; if($ir['donatordays'] < 1) { die('This is for donators only!'); } echo' Welcome to the gym membership hall! '; if($ir['gym'] > 1) { echo" You are currently a member of XXX gyms!"; } else { echo" You are not a member of any gym at the momment. Please join one of the gyms below!"; } echo" <table width='90%' cellspacing=1 class='table'><tr><th>Gym Name</th> <th>Cost Per Week</th> <th>Level</th> <th>Join</th></tr>"; while($r=$db->fetch_row($q)) { print "<tr><td align='center' colspan='5' class='h'> [b]{$r['gymgroupNAME']}[/b]</td></tr>"; foreach($crimes as $v) { if($v['gymGROUP'] == $r['gymgroupID']) { print "<tr> <td>{$v['gymNAME']}</td> <td>{$v['gymCOST']}</td> <td>{$v['gymLEVEL']}</td> <td><div class='perform_btn'>[url='joingym.php?c={$v[']Join[/url]</div></td> </tr>"; } } } print "</table>"; $h->endpage(); ?>   Not really much too it the now lol... This code i just started :)
  8. what?
  9. Im in need of a little noob help :) Im trying to make a gym memberships MOD for my game (First mod), and ive got everything nearly done, but then i come to the table part where to view the available gyms... None of the gyms are showing up even after i have added them to phpMyadmin Heres my table: echo" <table width='90%' cellspacing=1 class='table'><tr><th>Gym Name</th> <th>Cost Per Week</th> <th>Level</th> <th>Join</th></tr>"; while($r=$db->fetch_row($q)) { print "<tr><td align='center' colspan='5' class='h'> [b]{$r['gymgroupNAME']}[/b]</td></tr>"; foreach($crimes as $v) { if($v['gymGROUP'] == $r['gymgroupID']) { print "<tr> <td>{$v['gymNAME']}</td> <td>{$v['gymCOST']}</td> <td>{$v['gymLEVEL']}</td> <td><div class='perform_btn'>[url='joingym.php?c={$v[']Join[/url]</div></td> </tr>"; } } } print "</table>";   I know this is probably something simple, as im still a noob. Can someone please point ot to me where i am going wrong? Thanks!
  10. Thanks. Got it fixed thanks to skalman. Thanks bud
  11. Ok. I done what you sayed, now im getting unexpected t_lumber or something :(
  12. That sounds about right skalman Ill try it and post here :)
  13. same again :(
  14. Exact same probme with that too :( Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING
  15. While i was changing my game so that you can only view the EXP bar in a certain city, i encountered this problem...: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING The statement i was using is : if($ir['location']==9) { <img src=bar_left_purp.gif height=13><img src=barpurple.gif width=$brperc height=13><img src=barred.gif width=$bropp height=13><img src=bar_fil_end.gif height=13> [b]EXP:[/b] {$experc}% }   Wheres the error there? Thanks for any help!
×
×
  • Create New...