This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-09-17 03:57:58

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Official PHP topic!

So yeah...  Discuss PHP here!  smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#2 2011-09-17 03:59:50

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Official PHP topic!

Cool, I've always wanted one of these! Maybe you could post codes and stuff to, like a php code sharing thread!


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#3 2011-09-17 04:03:18

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: Official PHP topic!

WindowsExplorer wrote:

Cool, I've always wanted one of these! Maybe you could post codes and stuff to, like a php code sharing thread!

Yep!  big_smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#4 2011-09-17 04:07:38

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: Official PHP topic!

WindowsExplorer wrote:

Cool, I've always wanted one of these! Maybe you could post codes and stuff to, like a php code sharing thread!

Here's some better coding for your IP signature!

Code:

<?php
header("Content-type: image/png");
$string = "      Your IP is " . $_SERVER['REMOTE_ADDR'];
$im = imagecreatefrompng("http://plaxon.comyr.com/images/button.PNG");
$color = imagecolorallocate($im, 0, 0, 0);
$px = (imagesx($im) - 7.5 * strlen($string)) / 4;
$py = 9;
$fontSize = 6;
 
imagestring($im, fontSize, $px, $py, $string, $color);
imagepng($im);
imagedestroy($im);
?>

Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#5 2011-09-17 04:11:44

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: Official PHP topic!

Hmm... If I wanted to create my own 'centre' tag for the forums, would it be possible?  If it is, please tell me how!  smile


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

#6 2011-09-17 07:29:16

wulfmaster
Scratcher
Registered: 2011-04-23
Posts: 500+

Re: Official PHP topic!

http://cyberkidscountry.com/upload/ip.php

Last edited by wulfmaster (2011-09-17 07:46:55)


Social Connections - Bringing communities close together! http://cyberkidscountry.com/ip.php

Offline

 

Board footer