Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 272
Search took 0.52 seconds.
Search: Posts Made By: Ndogg
Forum: JavaScript programming 04-17-2013, 07:43 AM
Replies: 2
Views: 196
Posted By Ndogg
Thank you, I will try that out.

Thank you, I will try that out.
Forum: JavaScript programming 04-15-2013, 09:17 AM
Replies: 2
Views: 196
Posted By Ndogg
Color Palette

<?php

$r = 0;
$g = 0;
$b = 0;
$cList = array('00','33','66','99','CC','FF');

?>

<table cellspacing="0" cellpadding="0" border="0">
Forum: JavaScript programming 01-30-2013, 08:03 AM
Replies: 3
Views: 242
Posted By Ndogg
EDIT: @sunfighter After testing your...

EDIT:

@sunfighter
After testing your solution, it got me to a point which showed that the problem is in a different part of my script. I added "+log" to the popup and it displayed Admin. So the...
Forum: JavaScript programming 01-29-2013, 09:03 AM
Replies: 3
Views: 242
Posted By Ndogg
OnClick Popup Issue

<?php
$log = 'Admin';
?>

<a onclick="Delete_All(<?php echo $log; ?>)">

<script>
function Delete_All(log) {
var r=confirm("Are you sure you want to delete every Log?");
Forum: General web building 03-20-2012, 07:25 AM
Replies: 2
Views: 598
Posted By Ndogg
Thank you for explaining that, I think your...

Thank you for explaining that, I think your suggestion might work. I will try it.
Forum: General web building 03-20-2012, 05:02 AM
Replies: 2
Views: 598
Posted By Ndogg
Ip Address

So, I made a game that when the users exit, it opens my site and submits there scores to the site along with their ip address. Every time they update their scores, it matches there ip addresses and...
Forum: PHP 02-23-2012, 11:50 PM
Replies: 8
Views: 556
Posted By Ndogg
No problem :p You can check out my game if...

No problem :p

You can check out my game if you want :)

Evolution - The Beginning (http://sandbox.yoyogames.com/games/194293-evolution---the-beginning)
My Website for the Game...
Forum: PHP 02-23-2012, 03:57 AM
Replies: 8
Views: 556
Posted By Ndogg
Sorry, I got distracted with something else and...

Sorry, I got distracted with something else and forgot to check this...

I am not using flash, I am using game maker 8.1, not great but it works. That is true though, if the website is down then...
Forum: PHP 02-20-2012, 09:05 AM
Replies: 8
Views: 556
Posted By Ndogg
For the first suggestion: I could possibly do...

For the first suggestion:
I could possibly do that, but if the site/host goes down for that second that the game is getting the token, then there scores wouldn't be updated. I don't know, its kinda...
Forum: PHP 02-20-2012, 07:33 AM
Replies: 8
Views: 556
Posted By Ndogg
I can't, the info has to be sent from the game to...

I can't, the info has to be sent from the game to the url bar.
Forum: PHP 02-20-2012, 03:28 AM
Replies: 8
Views: 556
Posted By Ndogg
Security

So I made a game that isn't connected to the internet. But when the game ends, it opens up my website to send the users game scores to my website.

It will first go here...
...
Forum: PHP 12-04-2011, 10:18 AM
Replies: 0
Views: 181
Posted By Ndogg
image_copy

<?php
$dest = imagecreatetruecolor(160, 160);

for($y=0;$y<=10;$y++){
for($x=0;$x<=10;$x++){
// Create image instances
$src = imagecreatefromjpeg('images/blue.jpg');

// Copy...
Forum: JavaScript programming 12-04-2011, 09:30 AM
Replies: 2
Views: 317
Posted By Ndogg
That makes sense, thank you.

That makes sense, thank you.
Forum: JavaScript programming 12-04-2011, 03:19 AM
Replies: 2
Views: 317
Posted By Ndogg
window.open

<a href="
javascript:
myWindow = window.open('http://en59.tribalwars.net/game.php?village=3463&screen=premium&mode=transfer');
myWindow.document.forms[0].name.value='Gods Child';end" ...
Forum: Site reviews 10-09-2011, 11:42 PM
Replies: 1
Views: 501
Posted By Ndogg
Count to 1,000,000

Count to 1,000,000 (http://www.million.infiniteserve.com/)

I made this site for fun... What it does is allows you to post a comment with a website advertisement. It automatically adds a number to...
Forum: Site reviews 07-10-2011, 01:33 AM
Replies: 4
Views: 1,517
Posted By Ndogg
I will look into that, thanks.

I will look into that, thanks.
Forum: Site reviews 07-09-2011, 11:11 AM
Replies: 4
Views: 1,517
Posted By Ndogg
Simple Rpg Open Source

Site: Simple Rpg Open Source

Description: A Basic Web Browser Rpg Download that is very easy to edit. On our forums there are loads of addons that make your game better and different from others...
Forum: General web building 07-07-2011, 11:24 AM
Replies: 5
Views: 426
Posted By Ndogg
Well, this worked on a different host, plus I...

Well, this worked on a different host, plus I dont really understand why a whitespace before anything would make a difference?

session_start(); //Tell PHP to start the session
Forum: General web building 07-07-2011, 10:56 AM
Replies: 5
Views: 426
Posted By Ndogg
That doesn't do anything... Could it be...

That doesn't do anything...

Could it be because I use <? instead of <?php ???
Forum: General web building 07-07-2011, 10:42 AM
Replies: 5
Views: 426
Posted By Ndogg
Question Warnings

I get this:


Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/ndogg/public_html/Forum/include/constants.php:2)...
Forum: PHP 07-04-2011, 01:04 AM
Replies: 5
Views: 665
Posted By Ndogg
Ya, thats sorta what I've have got now... ...

Ya, thats sorta what I've have got now...

$new_exp = (abs($result['level']-$session->level) <= 5 && $result['level']-$session->level < "0") ? $exp : ($session->exp+$result['hp']) *...
Forum: PHP 07-03-2011, 12:14 AM
Replies: 5
Views: 665
Posted By Ndogg
1. I apologize, I deleted the ceil() but not the...

1. I apologize, I deleted the ceil() but not the /2, so if your the same level it would have been ceil(.5)

2. Again sorry, I didn't explain enough, exp isn't in the code, it is actually...
Forum: PHP 07-02-2011, 11:50 AM
Replies: 5
Views: 665
Posted By Ndogg
Question Math

I have this below to show how much exp was gained from a fight.

$exp = exp*max(0,ceil($result['level']-$session->level)/2);

//$result['level'] is the enemies level
//$session->level is your...
Forum: Site reviews 02-08-2011, 02:00 AM
Replies: 2
Views: 941
Posted By Ndogg
Thanks alot :) The download is very easy, its...

Thanks alot :) The download is very easy, its just one form and an sql file.
Forum: Site reviews 02-07-2011, 04:56 AM
Replies: 2
Views: 941
Posted By Ndogg
Exclamation Open Source Forum from Scratch

Godly Forums

I created this forum from scratch and it is now downloadable with a quick and easy install system. Its completely functional with an ACP and MCP for you to control the members on your...
Showing results 1 to 25 of 272

 
Forum Jump

All times are GMT +1. The time now is 05:40 AM.