Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,137
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Djkanna

  1. Urgh please read Done simple enough said
  2. <?php //define stuff here $subject = ''; $message =''; $getEmails = $db->query("SELECT `email` FROM `users`"); while($e = $db->fetch_row($getEmails)) { if(mail($e['email'], $subject, $messages)) { echo 'Mass Email sent'; } else { echo 'Mass Email failed'; } } Should give you an idea, just something I wrote in the textbox please forgive any errors.
  3. It's the stair case tabbing effect, not that hard to read it like that.. Good job :thumbsup:
  4. Djkanna

    Layout Help

    One thing, Get Adobe Photoshop Cs4/5 working on Ubuntu (for example) then come back and tell me GIMP is crap ;)
  5. Just to be different, have you checked the V2 folder there is an SQL file in there.
  6. Still not in the right place try Chit chat next time Moved to Chit Chat.
  7. Why bother? Use stripey tables for those people that have better browsers, those that use IE can have a plain one colour table rows..
  8. Djkanna

    Layout Help

    Because programming knowledge can help with designing layouts? I mean if you don't know what a un/ordered list is used for then you cannot exactly make a layout with a menu, as you'll never be able to make that design a reality no? Yes I know I used 'programming' and a html element together shoot me.
  9. I wish I had a pound for every non 'n00b' I came across :) Oh crap I'd be poorer than I am already. (note to self: think first)
  10. I thought I'd give it a go too, although I'm not much of a designer. Here's my attempt: Wasn't entirely sure what style you wanted the gun so I went with the same as the text. All objects used as far as I'm aware are commercial use allowable.
  11. The reason I had thoughts about it being best on a forum is well the support you can get via a forum as for example a mod on your archive doesn't work as it should the download then has to submit a ticket(if this is possible) where as a forum there is the advantages of other people noticing it doesn't work and perhaps providing a fix etc. I still like the idea and best of luck with it.
  12. Oh darn I totally overlooked nth-child () XD
  13. Idea is a good one, my only concern is maybe a forum is a better place for this sort of things.
  14. I cannot say for certain if it is or it is not, however if past events have proven anything I'd say it still somewhat lacks in that department. You're probably best to pay someone like CrimGame or Jordan to do it for you, rather than wait for MCC to get it done. SideBar: I have no doubt they will get it done however it is bound to take some time, so it is quicker to get someone to do it for you (or do it yourself).
  15. Way way to difficult.. CSS: tr:even { } tr:odd {} jQuery(something to this effect): $(document).ready(function() { $('table.stripe tr:even').addClass('differentColourToBaseColour'); });
  16. Looks nice, sounds interesting. Good luck with it bud.
  17. FireFTP Ninja: This may help you out: Hosting KB Tutorials
  18. I assume you were heading for the mythical 'Web 2.0' look? You picked the right platform also (I just <3 Wordpress) :P Nice work Token, I'll be looking forward to seeing more :D
  19. Who do you think told Linton? -.- When are you leaving by the way, I do not mean to prolong things further however I mean its taking you a while certainly it doesn't take that long to deal with your social networking accounts, I understand Facebook account cancellation is tiresome nevertheless you are just taking the piss.
  20. Djkanna

    2010 Fwc

    Well as heritage goes my first choice England is out so..Come on Germany!
  21. Now why would I do that? For example I wanted to search for someone with the name 'Mr.Doodles' or 'Newbs!!'. I'd want to allow charecters that aren't, [A-Za-z] Personally I'd use filter_var($var, FILTER_SANITIZE_STRING); But I couldn't be assed typing it ^.^
  22. Locked
  23. Just my two cents =) I dislike HTML stuffed in with PHP :P <form action="blah" method="post"> <label for="search">Search:</label> <input type="text" name="search" id="search" /> </p> <input type="submit" value="Search" /> </form> <?php /* PHP STUFF */ if(isset($_POST['search'])) { $mysql = new mysqli('host', 'username', 'pass', 'db') or trigger_error('Error: '.mysqli_connect_error(), E_USER_ERROR); $stmt = $mysql->prepare("SELECT `username` FROM `users` WHERE (`username` LIKE '%?%')"); $stmt->bind_param('s', strip_tags($_POST['search'])); $stmt->execute(); if($mysql->num_rows()) { $stmt->bind_result($username); while ($stmt->fetch()) { echo 'Username: '.$username; //I hate using markup within PHP tags (reason there's no </p> here). } } else { //Error no results } $stmt->close(); $mysql->close(); } I doubt the above is very functional (or practical) but I hope it gives you an idea :thumbup:
  24. @ 1440x900
  25. One thing, Who's going to trust you with their paid modifications? Or am I wrong in thinking that you'll host these mods? Zero: Nearly: Guten tag mein freund's and good day to you too :)
×
×
  • Create New...