Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,137
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Djkanna

  1. Djkanna

    Hire

    Lazy way $_GET['blah'] += 0
  2. There is an engine of sorts available to download but I have to admit I did have to look for the download!
  3. Sounds interesting I'll be having a look.
  4. Haha, I like that kudos to Nyna :L
  5. I learn't what I know about PHP security from Magictallguy, CrazyT and off course the PHP manual ;)
  6. Care to provide proof of this accusation ?
  7. You have to understand this would be a article based on PHP security, sure we may point out flaws within the McCode script and give solutions on how to fix the flaw in question. However with recent events this probably won't happen any time soon, unless someone(or some of you) feel like contributing towards the series of articles I'll spare some time and we'll do it for PHPGameSpace and here. Off course it will be freely available to you as in my opinion this is something that should be sold after all we're a community for helping others ^^
  8. Hey, your funny and I would laugh at your stupidity IRL. No really Care to elaborate?
  9. Guess that was directed at me because A_Bertrand has been here longer than your 'Godhand' account... Just a quick thing neither one of us stated that we wanted to know why you were wanting to start a game in order to quit your job and drop out of college we merely stated that a game will not provide that much income. Again good luck with your project. Oh and you say "You know what they say when you assume" - I say: well you've done a lot of assuming in that post yourself.. Djkanna.
  10. Offtopic: but why would you want to drop out of College; Games don't make income forever you're still going to need some form of qualifications and a job. However this isn't you're school council so yeah :P Good luck with your project ;)
  11. Found some more: I'm bored of looking now...
  12. http://www.userbars.com/ Create your own :)
  13. That's why you filter incoming data!
  14. Happy Birthday Illusions
  15. From W3Schools, thay cant lie now can they -.- any more evidence you want. I think you mentioned it ;)
  16. I'd highly suggest using the reccomended way of opening a php tag "<?php"
  17. echo has a slight performance gain; Also different topic you're friend is the admin of some chaotic game (He told me off for mentioning McCodes -.-) As for your statement no comment! Actually one: Be consistent! Danny that was out of order! [warnbox]Keep it friendly, this applies to all![/warnbox] To the OP nice addition.
  18. Uncompressed and tabbed! <?php include (dirname(__file__) .'/header.php'); $result = mysql_query("SELECT * FROM `cities` WHERE `id`='".$user_class->city."'"); $worked = mysql_fetch_array($result); $checkMail = mysql_query("SELECT * FROM `pms` WHERE `to`='$user_class->username' and `viewed`='1'"); $numMsgs = mysql_num_rows($checkMail); $checkEvents = mysql_query("SELECT * FROM `events` WHERE `to`='$user_class->id' and `viewed` = '1'"); $numEvents = mysql_num_rows($checkEvents); ?> <tr> <td class="contenthead"><? echo $user_class->cityname; ?></td> </tr> <tr> <td class="contentcontent"><?= $worked['description'] ?></td> </tr> <tr> <td class="contenthead">Places To Go</td> </tr> <tr> <td class="contentcontent"> <table width='100%' border='0'> <tr> <th width='33.3%'><u>Shops</u></th> <th width='33.3%'><u>Town Hall</u></th> <th width='33.3%'><u>Casino</u></th> </tr> <tr> <td width='33.3%' align=center> [url="astore.php"]Crazy Riley's Armor Emporium[/url] [url="store.php"]Weapon Sales[/url] [url="itemmarket.php"]Item Market[/url] [url="pointmarket.php"]Points Market[/url] [url="spendpoints.php"]Point Shop[/url] [url="pharmacy.php"]Pharmacy[/url] <?php echo ($user_class->city == 2) ? "[url='carlot.php']Big Bob's Used Car Lot[/url]" : ""; ?> </td> <td width='33.3%' align=center> [url="halloffame.php"]Hall Of Fame[/url] [url='worldstats.php']World Stats[/url] [url="viewstaff.php"]Town Hall[/url] [url='search.php']Mobster Search[/url] [url="citizens.php"]Mobsters List[/url] [url="online.php"]Mobsters Online[/url] </td> <td width='33.3%' align=center> [url="lottery.php"]Lottery[/url] [url="slots.php"]Slot Machine[/url] [url='5050game.php']50/50 Game[/url] </td> </tr> <tr> <th width='33.3%'><u>Your Home</u></th> <th width='33.3%'><u>Travel</u></th> <th width='33.3%'><u>DownTown</u></th> </tr> <tr> <td width='33.3%' align=center> [url="pms.php"]Mailbox[<?php echo number_format($numMsgs); ?>][/url] [url="events.php"]Events[<?php echo number_format($numEvents); ?>][/url] [url="spylog.php"]Spy Log[/url] [url="inventory.php"]Inventory[/url] [url="refer.php"]Referrals[/url] [url="house.php"]Move House[/url] [url="fields.php"]Manage Land[/url] </td> <td width='33.3%' align=center> [url='bus.php']Bus Station[/url] [url='drive.php']Drive[/url] </td> <td width='33.3%' align=center> [url="buydrugs.php"]Shady-Looking Stranger[/url] [url="downtown.php"]Search Downtown[/url] [url="jobs.php"]Job Center[/url] <a href = "gang_list.php">Gang List</a> [url="<? echo ($user_class->gang == 0) ? "]">Your Gang[/url] [url="bank.php"]Bank[/url] [url="realestate.php"]Real Estate Agency[/url] </td> </tr> <tr> <th colspan=3><u>Mafia Streets</u></th> </tr> <tr> <td colspan=3 align=center> [url='viewstocks.php']View Stock Market[/url] [url='brokerage.php']Brokerage Firm[/url] [url='portfolio.php']View Portfolio[/url] </td> </tr> <tr> <td colspan='3'> </td> </tr> </table> </td> </tr> <?php include (dirname(__file__) .'/footer.php'); ?> Uncompressed and not tabbed! <?php include (dirname(__file__) .'/header.php'); $result = mysql_query("SELECT * FROM `cities` WHERE `id`='".$user_class->city."'"); $worked = mysql_fetch_array($result); $checkMail = mysql_query("SELECT * FROM `pms` WHERE `to`='$user_class->username' and `viewed`='1'"); $numMsgs = mysql_num_rows($checkMail); $checkEvents = mysql_query("SELECT * FROM `events` WHERE `to`='$user_class->id' and `viewed` = '1'"); $numEvents = mysql_num_rows($checkEvents); ?> <tr> <td class="contenthead"><? echo $user_class->cityname; ?></td> </tr> <tr> <td class="contentcontent"><?= $worked['description'] ?></td> </tr> <tr> <td class="contenthead">Places To Go</td> </tr> <tr> <td class="contentcontent"> <table width='100%' border='0'> <tr> <th width='33.3%'><u>Shops</u></th> <th width='33.3%'><u>Town Hall</u></th> <th width='33.3%'><u>Casino</u></th> </tr> <tr> <td width='33.3%' align=center> [url="astore.php"]Crazy Riley's Armor Emporium[/url] [url="store.php"]Weapon Sales[/url] [url="itemmarket.php"]Item Market[/url] [url="pointmarket.php"]Points Market[/url] [url="spendpoints.php"]Point Shop[/url] [url="pharmacy.php"]Pharmacy[/url] <?php echo ($user_class->city == 2) ? "[url='carlot.php']Big Bob's Used Car Lot[/url]" : ""; ?> </td> <td width='33.3%' align=center> [url="halloffame.php"]Hall Of Fame[/url] [url='worldstats.php']World Stats[/url] [url="viewstaff.php"]Town Hall[/url] [url='search.php']Mobster Search[/url] [url="citizens.php"]Mobsters List[/url] [url="online.php"]Mobsters Online[/url] </td> <td width='33.3%' align=center> [url="lottery.php"]Lottery[/url] [url="slots.php"]Slot Machine[/url] [url='5050game.php']50/50 Game[/url] </td> </tr> <tr> <th width='33.3%'><u>Your Home</u></th> <th width='33.3%'><u>Travel</u></th> <th width='33.3%'><u>DownTown</u></th> </tr> <tr> <td width='33.3%' align=center> [url="pms.php"]Mailbox[<?php echo number_format($numMsgs); ?>][/url] [url="events.php"]Events[<?php echo number_format($numEvents); ?>][/url] [url="spylog.php"]Spy Log[/url] [url="inventory.php"]Inventory[/url] [url="refer.php"]Referrals[/url] [url="house.php"]Move House[/url] [url="fields.php"]Manage Land[/url] </td> <td width='33.3%' align=center> [url='bus.php']Bus Station[/url] [url='drive.php']Drive[/url] </td> <td width='33.3%' align=center> [url="buydrugs.php"]Shady-Looking Stranger[/url] [url="downtown.php"]Search Downtown[/url] [url="jobs.php"]Job Center[/url] <a href = "gang_list.php">Gang List</a> [url="<? echo ($user_class->gang == 0) ? "]">Your Gang[/url] [url="bank.php"]Bank[/url] [url="realestate.php"]Real Estate Agency[/url] </td> </tr> <tr> <th colspan=3><u>Mafia Streets</u></th> </tr> <tr> <td colspan=3 align=center> [url='viewstocks.php']View Stock Market[/url] [url='brokerage.php']Brokerage Firm[/url] [url='portfolio.php']View Portfolio[/url] </td> </tr> <tr> <td colspan='3'> </td> </tr> </table> </td> </tr> <?php include (dirname(__file__) .'/footer.php'); ?> Moved all queries up to the top of the document.
  19. Thank you Monkey644 :) Thank you Richard ^^
  20. Okay guys you've both made your point(I hope :S ) please keep it friendly. To the OP, people were actually charging for this 8| anyho.. Nice one on posting it up :thumbsup:
  21. Djkanna

    crazyt.co.uk

    Okay how about ending it?
  22. Djkanna

    crazyt.co.uk

    Awww. </3
  23. Djkanna

    crazyt.co.uk

    ): Since I'm here now http://www.djkanna.co.uk http://www.mrdjk.com
  24. Djkanna

    crazyt.co.uk

    I don't post my site thank you very much -_-
×
×
  • Create New...