
keiran420
Members-
Posts
55 -
Joined
-
Last visited
Never
Everything posted by keiran420
-
Yo dude, Can you lends me a $100's? I'll pay you back... promise ^^
-
This 2 line function returns results not a million miles of what you want... function score($score){ return round($score/5000); } this returned... score 5000 equals 1% score 7898 equals 2% score 10796 equals 2% score 13694 equals 3% score 16592 equals 3% score 19490 equals 4% score 22388 equals 4% score 25286 equals 5% score 28184 equals 6% score 31082 equals 6% score 33980 equals 7% score 36878 equals 7% score 39776 equals 8% score 42674 equals 9% score 45572 equals 9% score 48470 equals 10% score 51368 equals 10% score 54266 equals 11% score 57164 equals 11% score 60062 equals 12% score 62960 equals 13% score 65858 equals 13% score 68756 equals 14% score 71654 equals 14% score 74552 equals 15% score 77450 equals 15% score 80348 equals 16% score 83246 equals 17% score 86144 equals 17% score 89042 equals 18% score 91940 equals 18% score 94838 equals 19% score 97736 equals 20% score 100634 equals 20% score 103532 equals 21% score 106430 equals 21% score 109328 equals 22% score 112226 equals 22% score 115124 equals 23% score 118022 equals 24% score 120920 equals 24% score 123818 equals 25% score 126716 equals 25% score 129614 equals 26% score 132512 equals 27% score 135410 equals 27% score 138308 equals 28% score 141206 equals 28% score 144104 equals 29% score 147002 equals 29% score 149900 equals 30% score 152798 equals 31% score 155696 equals 31% score 158594 equals 32% score 161492 equals 32% score 164390 equals 33% score 167288 equals 33% score 170186 equals 34% score 173084 equals 35% score 175982 equals 35% score 178880 equals 36% score 181778 equals 36% score 184676 equals 37% score 187574 equals 38% score 190472 equals 38% score 193370 equals 39% score 196268 equals 39% score 199166 equals 40% score 202064 equals 40% score 204962 equals 41% score 207860 equals 42% score 210758 equals 42% score 213656 equals 43% score 216554 equals 43% score 219452 equals 44% score 222350 equals 44% score 225248 equals 45% score 228146 equals 46% score 231044 equals 46% score 233942 equals 47% score 236840 equals 47% score 239738 equals 48% score 242636 equals 49% score 245534 equals 49% score 248432 equals 50% score 251330 equals 50% score 254228 equals 51% score 257126 equals 51% score 260024 equals 52% score 262922 equals 53% score 265820 equals 53% score 268718 equals 54% score 271616 equals 54% score 274514 equals 55% score 277412 equals 55% score 280310 equals 56% score 283208 equals 57% score 286106 equals 57% score 289004 equals 58% score 291902 equals 58% score 294800 equals 59% score 297698 equals 60% score 300596 equals 60% score 303494 equals 61% score 306392 equals 61% score 309290 equals 62% score 312188 equals 62% score 315086 equals 63% score 317984 equals 64% score 320882 equals 64% score 323780 equals 65% score 326678 equals 65% score 329576 equals 66% score 332474 equals 66% score 335372 equals 67% score 338270 equals 68% score 341168 equals 68% score 344066 equals 69% score 346964 equals 69% score 349862 equals 70% score 352760 equals 71% score 355658 equals 71% score 358556 equals 72% score 361454 equals 72% score 364352 equals 73% score 367250 equals 73% score 370148 equals 74% score 373046 equals 75% score 375944 equals 75% score 378842 equals 76% score 381740 equals 76% score 384638 equals 77% score 387536 equals 78% score 390434 equals 78% score 393332 equals 79% score 396230 equals 79% score 399128 equals 80% score 402026 equals 80% score 404924 equals 81% score 407822 equals 82% score 410720 equals 82% score 413618 equals 83% score 416516 equals 83% score 419414 equals 84% score 422312 equals 84% score 425210 equals 85% score 428108 equals 86% score 431006 equals 86% score 433904 equals 87% score 436802 equals 87% score 439700 equals 88% score 442598 equals 89% score 445496 equals 89% score 448394 equals 90% score 451292 equals 90% score 454190 equals 91% score 457088 equals 91% score 459986 equals 92% score 462884 equals 93% score 465782 equals 93% score 468680 equals 94% score 471578 equals 94% score 474476 equals 95% score 477374 equals 95% score 480272 equals 96% score 483170 equals 97% score 486068 equals 97% score 488966 equals 98% score 491864 equals 98% score 494762 equals 99% score 497660 equals 100% in a quick loop for ($i=5000; $i<=500000; $i=$i+2898){ echo "score ".$i." equals ".score($i)."%<br>"; }
-
Yea, a free online ebook kind, or www.w3schools.com
-
That would be hard becase its not spread out evenly... Input | Score ================ 0 | 0 10000 | 4 times 4x2500 20000 | 8 times 8x2500 30000 | 16 times 16x1875 40000 | 27 times 27x1481.5 50000 | 45 60000 | 63 70000 | 73 80000 | 77 90000 | 79 100000 | 80 250000 | 90 500000 | 100 100x5000 600000 | 100 700000 | 100 800000 | 100 900000 | 100 1000000 | 100 Why not just divide the final score by a number like 2500? 10000/2500= 4 500000/2500= 200 or another...
-
That line is not the problem then... Dont listen to much to line error reports.... Depending on what the error is, it may get that totally wrong... I bet if you read every line of your code, you would find atleast 1 error... Thats your job to read it, not anyone elses, try adding some more error handling reports in, once you have identified the error, things will be hella easyer... Ok 2 things, 1 i never ever used 'var', and 2, echo out the value of '$template' before using it, see if it is what you think it is...
-
Well have you got the appropriate paypal account? It should tell you... Once someone pays into paypal, it takes a few minutes to comfirm this... You as the owner of the site and the paypal account should be able to clearley see when someones payment has been cleared... That is when you upgrade their account (which really should be as simple as changing 1 variable) Sorry for the lack of a technical reply, but i have never coded with paypal... But i really do not think what your asking could be hard, Ill say again, check paypal's site for details, surely it gives tips to web programmers wanting to incooperate paypal...
-
you can add ARRAYS into querys using {}....
-
That line is not the problem then... Dont listen to much to line error reports.... Depending on what the error is, it may get that totally wrong... I bet if you read every line of your code, you would find atleast 1 error... Thats your job to read it, not anyone elses, try adding some more error handling reports in, once you have identified the error, things will be hella easyer...
-
INDENTATION INDENTATION INDENTATION It makes code readable, and it makes it easy to see what gets executed when what happenes.../ As for comments, depends who is gonna read your code, comment what needs to be commented explained...
-
I cant see a problem on that 1 line, and i am not reading through 2000 lines in your link... But have you tried doing it a differant way, at times i find things fail 1 way, yet work randomly another... try var $template_dir = "templates/".$template;
-
Hey guys. I hope this is allowed here, as i want to discuss a certain culture... The culture of 420. As my name says, im part of it. To be blunt for a second:, 420 is the culture of cannabis. A substance banned in parts of the world. (with varying degrees of strictness) Why is it banned? Do you think it should be banned? If so do you honestly think it is worse than say alcohol or nicoten...? If someone asked me why cannabis was illegal, i would reply that the goverment does not want to change its views becuase of the 'bad image' many say it would cause... But believe me, every goverment on this planet really would want it legal, moderted, and taxed. I live in britain, and TBH the laws on cannabis are hardley enforced. If you grow it and deal it, the cops are gonna be after you for sure. But i would feel quite safe walking past any coppers with a bit of personal. I havnt been caught smoking in public often, and only one of those times did even the slightest bad thing happen, i lost some weed. ^^ I want any one who is shaking their heads right now to think about this. Almost as many people in the world have atleast tried cannabis as the ones who drink even a little. Now how many alcohol related crimes, fights, murders do you here about? Just last fucking year in a town not far from me, some 18 yearold chav put his beer can down at a party, a little girl picked it up and had a sip, he punched her so hard she died :'( you here about so many god damn drinking fueled stabbings, and murders it makes me sick. coinsidently, drinking also makes me sick <.<... anyway. This is all part rant, part poll, and part preaching... whats your thoughts on the questions: Why is it banned? Do you think it should be banned? If so do you honestly think it is worse than say alcohol or nicoten...? And a poll... Try a lot: Tried a bit Tried barley ever Tried never Sorry again if this is not allowed here, just bored ^^.
-
Got wampserver working, and it compiled and ran 100/100 trial runs... Seems to have done it... Thanks dudes ^^
-
... which is? People here may be good, but i believe they need more info than "I am getting a php error now."... What is the error?
-
its got "action='mailform.php'" in the code i linked, that needs to be the name of the page...
-
Courtasy of W3schools.com <html> <body><?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; mail( "[email protected]", "Subject: $subject", $message, "From: $email" ); echo "Thank you for using our mail form"; } else //if "email" is not filled out, display the form { echo "<form method='post' action='mailform.php'> Email: <input name='email' type='text' /><br /> Subject: <input name='subject' type='text' /><br /> Message:<br /> <textarea name='message' rows='15' cols='40'> </textarea><br /> <input type='submit' /> </form>"; } ?></body> </html>
-
I just tried to run a hello world script in the 'www' file... Also clicked on one of the standard php files in on of the other files... And this stuff appeared in my log...
-
Ok, i have downloaded it, but i casnt seem to run .php files.... this is the error log... [06-Dec-2008 18:46:54] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:46:54] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:46:54] PHP Notice: Undefined variable: mywampini in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:46:54] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:46:54] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:47:03] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:03] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:03] PHP Notice: Undefined variable: mywampini in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:03] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:47:03] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:47:15] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:15] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:15] PHP Notice: Undefined variable: mywampini in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:15] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:47:15] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:47:50] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:50] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:50] PHP Notice: Undefined variable: mywampini in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:47:50] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:47:50] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:50:56] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:50:56] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:50:56] PHP Notice: Undefined variable: mywampini in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:50:56] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:50:56] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:51:35] PHP Notice: Undefined variable: mywampfp in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:51:35] PHP Notice: Undefined variable: i in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:51:35] PHP Notice: Undefined variable: mywampini in C:\wamp\scripts\refresh.php on line 252 [06-Dec-2008 18:51:35] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385 [06-Dec-2008 18:51:35] PHP Notice: Undefined offset: 1 in C:\wamp\scripts\refresh.php on line 385
-
Searched my c drive, and nope. no lof folder, or php_error.log dont have apache, just some php editor/runner and php/mysql
-
This is probibly all it is, im actually running my script from "PHP Expert Editor"... I found an application with cgi in its name, but i cant find any cgi logs savrd anywhere...
-
and after 25 refresh's of it working with the errors, i gets another 100% blank page...
-
Oh, got some.... i newish to errors, just been on w3schools... Notice: Undefined variable: down in C:\Users\keiran\Documents\php7CC7.tmp on line 14 Notice: Undefined offset: 1 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 2 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 3 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 4 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 5 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 6 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 7 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 8 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 9 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined offset: 10 in C:\Users\keiran\Documents\php7CC7.tmp on line 16 Notice: Undefined variable: counter in C:\Users\keiran\Documents\php7CC7.tmp on line 20 Notice: Undefined variable: carry in C:\Users\keiran\Documents\php7CC7.tmp on line 21 2339716752 Though thats the right answer... but that looks bad...
-
Indeed... I have tried my best at error messages, though i just cant seem to get any reason. Here is the exact code im running... Function Mul($numbera, $numberb){ $number1=Str_split($numbera); $number2=Str_split($numberb); Foreach ($number2 As $b){ ++$down; $across=-1; Foreach ($number1 As $a){ ++$across; $muls[$down+$across]+=$a*$b; } } $muls=Array_reverse($muls); Foreach ($muls As $mul){ ++$counter; $add=$mul+$carry; If ($add>9){$total[$counter] = $add % 10; $carry = $add/10 - $total[$counter]/10;} Else{ $total[$counter] = $add; $carry = 0;} } Array_push($total,$carry); $total=Array_reverse($total); $total=Implode($total); $total=Ltrim($total,"0"); Return $total; } And i was calling it with $c="1234567890"; $b="0987654321"; Echo Mul($c,$b); Again, the majority of the time it returns the correct answer 1219326311126352690, but just not every time... >.< No good if i ever wanted to use this function fo real... would have to check if it worked every time i used it!
-
No, i cant get an error.. It will do it with any number... I could multiply the same numbers 10 times in a row, it could fail the 11th... it could fail for the 1st 10, then work on the 11th, its random... Also note, that when it does this for larger numbers, the blankness is returned instantly... so it must be somthing near the top... no? I wass thinking maybe str_spli doesnt like splitting 2x 5000 long strings... but it does it on 2x 5 digi strings aswell... Ill try harder to squeeze an error out of it somewhere....
-
Just a quick one guys. My code is about at what it was, got an idear on how to add decimal points... But 1st, theres a kind of bug.... When i run my code, it will only really return a result around 9 out of 10 times... that 1 out of 10, it simply returns nothing, regardless of the size or complexity of the numbers.... Why is this?