mobious
Members-
Content Count
117 -
Joined
-
Last visited
Everything posted by mobious
-
Latest Grunge Work pretty sweet
mobious replied to Good Grief Graphics's topic in Graphics, Design & Animation
omfg! that did freak me out at first look.. great work! -
edit the template of the script. just put it beside the other links.
-
just an advise, if you don't have time to write your own script and it is REALLY HARD to find. go get a professional.
-
About Cragllo's Script Time File. Located on support.trap17.com
mobious replied to Mike's topic in Programming
it really has no big effect at all. i mean being slowed down for seconds. at least a fraction of a second ain't bad. coz php scripts, especially those that are really short are parsed fast. -
have you ever tried this? gmdate('H:i A, jS F Y', time());
-
i suggest that you drop the wml part since you think that you will be using php as a scripting language.
-
A Function To Count The Number Of Lines In A String?
mobious replied to beeseven's topic in Programming
$lines = explode("/n", $string);$number_lines = count($lines);if ($number_lines < $req_lines) { // do whatever you want} -
Whould I Use Php To Make A Game Like The Army System? Or javascript?
mobious replied to Dayzed's topic in Programming
to sums things up for you.PHP - Scripting LanguageMySQL - Database BackendcPanel - For cron jobs and other tools -
Whould I Use Php To Make A Game Like The Army System? Or javascript?
mobious replied to Dayzed's topic in Programming
php would definitely do the job. -
<? Include ?> <iframe/> This could save me tons of time
mobious replied to Joshthegreat's topic in Programming
but for me, the best way to go is to use a template system so that html tags are seperated from your php codes. -
Get Filename Of Referring Url php code to get filename of referring URL
mobious replied to snlildude87's topic in Programming
@spectre: ok. i'll close my tags always. -
Get Filename Of Referring Url php code to get filename of referring URL
mobious replied to snlildude87's topic in Programming
just manipuate the url. $filename strrpos($_SERVER['HTTP_REFERER'], strrpos($_SERVER['HTTP_REFERER'], '/') + 1); -
and there's a lot more if you search at google.com.
-
Johnny's 3d Stuff! Heres my C4D renders yay
mobious replied to Johnny's topic in Graphics, Design & Animation
nice renders... very spikey! -
many people really love ask that question! also try http://www.phpjunkyard.com/
-
but it looks like that he is having a problem with that...
-
give me the real name of the hack and where you got it. i will try to configure it in my forum.
-
i think there is an instruction included or something similar.
-
you like digging graves my friend?
-
my help for you is go to this search website. https://www.google.de/?gfe_rd=cr&ei=BwkjVKfAD8uH8QfckIGgCQ&gws_rd=ssl btw there are also games on http://www.phpbbhacks.com/
-
Never Fear, Johnny's Here! To save the photoshop forum
mobious replied to Johnny's topic in Graphics, Design & Animation
i like the fire thing sig coz i'm into abstracts! and the details on work are fine... it would be great if you post some tutorials on how you make your sigs so people would be inspired to make one for themselves... -
since you are hosted on Xisto, just use PHP to execute your MySQL queries. please try searching the forum for tutorials first. if there are none, just reply here and i will help you.
-
Ranking System With Mysql Cant think of a way to do it.
mobious replied to krap's topic in Programming
just edit this code for your site: $sql = "SELECT creator, (crew1 + crew2 + crew3 + crew4 + crew5 + crew6 + crew7 + crew8 + crew9 + crew10) as score FROM crews";if (!($result = mysql_query($sql))) { exit(mysql_error() . ' - ' . $sql);}while ($crews[] = mysql_fetch_assoc($result));for ($x = 0; $x < count($crews) - 1; $x++) { print '1. ' . $crews[$x]['creator'] . ' ' . $crews[$x]['score'];}