Jump to content
MakeWebGames

mikemastah

Members
  • Posts

    79
  • Joined

  • Last visited

    Never

Everything posted by mikemastah

  1. Re: Illegalife and his GFX that's pretty good. nice work Illegalife.
  2. Re: intergrate html layout into mccodes what layout? do you have it on a site somewhere? otherwise please at least post html+css.
  3. Re: secured forums   You know, you could search the forums..
  4. Re: split variable ok, thanks for the info. I changed it.
  5. Re: split variable ah, figured it out. /*User input*/ var mrnaCodes = "AAAUUUCCCGGGAAAUUUCCCGGGGGGCCCUUUAAA"; function someThing(); { var startSlice = 0; var mrnaArray=new Array(); while(startSlice<mrnaCodes.length) { endSlice = startSlice+3; var i=startSlice/3; mrnaArray[i] = mrnaCodes.slice(startSlice,endSlice); startSlice = startSlice+3; } }   thanks for the help
  6. Re: cod4 online I play cod4 on ps3 [PSN: mikemastah] but I only had the game for 2 weeks so I'm only level 30.. what's the prestige thing you're talking about?
  7. Re: split variable looks like what I need but I need some help to use it I'm afraid. At this time I have a var 'mrnaCodes' which is the value of an input field. I used to do this "var mrnaArray = mrnaCodes.split(" ");" for the input with spaces (ex1)   but now I want them able to choose between ex1 and ex2.   I do need however the same array mrnaArray[0]="BLA" mrnaArray[2]="BLA" etc.
  8. I was wondering is it possible to split a variable per 3 characters like split(" "); but not split at a space but really every three characters.
  9. Re: Cron Jobs   /bin/sh: /public_html/underworld/cron_minute.php?code=mycode: No such file or directory there is something wrong with your crontab. can you tell me once again exactly what your crontab is. (the execute bit) what does it have to execute? you are using cPanel right? Because of the email i'd say your crons are setup correctly.
  10. Re: Cron Jobs if you are absolutely sure, manually enetering http://underworld.underground-hosting.net/cron_day.php?code=mycode does work and the cron curl [url]http://underworld.underground-hosting.net/cron_day.php?code=mycode[/url] does not, even though cURL is enabled contact your host, the may have setup crons wrong. Maybe you can show a screenshot of the "Advanced (Unix Style)" page in cPanel?? the one I included in the attachment.
  11. Re: Cron Jobs instead of cURL try wget, it might work.
  12. Re: Cron Jobs try to run the cron manually. can you do that?
  13. Re: Cron Jobs you probably need to specify the complete path /home/username/public_html/cron_minute.php or something close to that
  14. Re: Cron Jobs you'll need crontab too. If you don't have that you'll not be able to setup crons.
  15. Re: adding php to an embed code ? There's nothing wrong with the SQL? try "SELECT * FROM videos WHERE videoID=someid" in phpmyadmin or another mysql client. it is 'videoID' right? not 'videoid' I made that mistake myself a couple of times :) Glad you fixed it
  16. Re: [mccodes V2] Add any type of video media to your game   you could probably do this very easily with preg_replace()
  17. Re: adding php to an embed code ? like Floydian said (in playvideo.php) $r=$db->query("SELECT playerswflink, videophplink, width, height, allowaccess FROM videos ",$c); $db->fetch_row($r); should be $q=$db->query("SELECT playerswflink, videophplink, width, height, allowaccess FROM videos ",$c); $r = $db->fetch_row($q); try that
  18. Re: Review Mystic Mafia Wars I have only one question. How much time did you spend on it? no offense but seriously the layout is terrible..
  19. Re: Usless comments in threads need to go bye bye This is so typically CE :) even a thread dedicated to less useless comments results in a thread with useless comments. lol
  20. Re: adding php to an embed code ? I think he means the value of the php variables inserted into the tag <embed> <embed src='' width='' height='' allowsiptallowaccess='' allowfullseen='true' flashvars='height=&width=&file=&backcolor=0x000000&frontcolor=0xFFFFFF&lightcolor=0xCC0000&displayheight=&autostart='/></a></embed> In that case Floydian's reply would probably help you. If you are trying to insert something in your database you should give more info because it isn't really clear.
  21. Re: adding php to an embed code ? [edit] He beat me to it... I said pretty much the same as Floydian
  22. Re: help with coding display Because in php you could go to example.com/script.php/maliciousxsscode and that would show up in $_SERVER['PHP_SELF']
  23. Re: help with coding display I suppose you could use something like $currentpage=addslashes($_SERVER['PHP_SELF']); if ($currentpage == 'newspaper.php') { include "mainmenu.php"; } else { require "header.php"; } which is probably what AlabamaHit meant.
  24. Re: Magazine Cover I like it very much, one thing though. The iPods are barely noticeable, if you can win an iPod it should jump off the cover.
  25. Re: army template:battle field looks good, what does the end of the page look like? Also what font did you use for battlefield??
×
×
  • Create New...