Jump to content
MakeWebGames

Recommended Posts

  • Replies 70
  • Created
  • Last Reply

Top Posters In This Topic

  • 3 weeks later...
Posted

Re: One Big Code!

$toot=array(10, 9, 8, 7, 6, 5, 4, 3, 2, 1);

for($dumbs=0; $dumbs<10; $dumbs++)

{

echo "{$toot[{$dumbs}]}";

}

echo "<font size='10' color='red'>Your all Fired</font>";

  • 4 weeks later...
  • 2 weeks later...
  • 5 months later...
Guest Anonymous
Posted

Re: One Big Code!

 

$settings = array('domain' => 'http://'.$_SERVER['HTTP_HOST'], 'sitename' => 'Criminal Existence', 'template' => 'default');

foreach($settings as $key => $value){

define ('DOMAIN', $value['domain'], true);
define ('SITENAME', $value['sitename'], true);
define ('TEMPLATE', $value['template'], true);

}
Posted

Re: One Big Code!

 

$_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false;
if(!in_array($_GET['action'], array('', 'this', 'is', 'boring'))) {
echo "You're supposed to pick an existing action -.-";
exit;
}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...