Top

Comments

  (26)  RSS
peterpowell's
Gforce20
Comments: 14
 
PHP Snippet:  Guess the number..
Posted on Nov 24, 2007 5:24 pm
Godzilla, this script isn't designed for mIRC. It's submitted as a PHP snippet, not mIRC.
peterpowell
Comments: 48
 
mIRC Addon:  iRCTunes v1.2
Posted on Oct 6, 2007 5:56 am
ok all.. this isnt getting updated.. i have asked hawkee to delete it

DO NOT DOWNLOAD IT

download the latest version from http://irctunes.sf.net/mirc/download.php

-pp
mountaindew
Comments: 1,645
 
mIRC Snippet:  Loaded Script Viewer v1.1
Posted on Oct 5, 2007 5:39 pm
yea i agree
peterpowell
Comments: 48
 
PHP Snippet:  Guess the number..
Posted on Sep 21, 2007 6:37 pm
ok..

i can see why you would want to do that, it seems a bit pointless but i prefer my method =]


-pp
RussellReal
Comments: 40
 
PHP Snippet:  Guess the number..
Posted on Sep 18, 2007 12:04 am
forward slashes =x
RussellReal
Comments: 40
 
PHP Snippet:  Guess the number..
Posted on Sep 18, 2007 12:04 am
they stripped my \s :O
RussellReal
Comments: 40
 
PHP Snippet:  Guess the number..
Posted on Sep 18, 2007 12:04 am
peterpowell, but it isn't untidy, it's rather tidy. Considering you have something like this

<html>
<head>
<title><? echo $title; ?></title>
</head>
<body>
<?
$lol = "omg|hi|how|are|you!";
$array = explode("|",$lol);
foreach($array as $k => $v) {
echo $k.") ".$v;
}
?>
</body>
</html>

That's alot more tidy than.

<?
echo "<html>\n<head>\n<title>".$title."</title>\n</head>\n<body>";
$lol = "omg|hi|how|are|you!";
$array = explode("|",$lol);
foreach($array as $k => $v) {
echo $k.") ".$v;
}
echo "</body>\n</html>";
?>

in my opinion anyway
peterpowell
Comments: 48
 
PHP Snippet:  Guess the number..
Posted on Sep 3, 2007 12:10 pm
why would i want to seperate the html? IMHO that makes it really untidy =)
Hawkee
Comments: 566
 
PHP Snippet:  Guess the number..
Posted on Aug 28, 2007 2:58 pm
It's better just to display the HTML outside of the <?php scope. That way you don't need to use all those echo's and you can separate your PHP from your HTML.
napa182
Comments: 1,152
 
PHP Snippet:  Guess the number..
Posted on Aug 28, 2007 1:08 pm
php web sites heh
Godzilla
Comments: 91
 
PHP Snippet:  Guess the number..
Posted on Aug 28, 2007 10:41 am
Can i know where they are used on? I mean mIRC scripts are used in mIRC, where is php used? :S
peterpowell
Comments: 48
 
PHP Snippet:  Simple meta tag generator
Posted on Aug 19, 2007 1:23 pm
i will add a demo soon :)

-pp
Godzilla
Comments: 91
 
PHP Snippet:  Simple meta tag generator
Posted on Aug 18, 2007 9:07 am
Must be nice, i don't understand this language, hehe :P
Olliegod
Comments: 74
 
mIRC Snippet:  Loaded Script Viewer v1.1
Posted on Jul 21, 2007 8:52 am
I think this dialog could use some type of scrollbar to ensure that all of the data presented is always aligned correctly.
peterpowell
Comments: 48
 
mIRC Snippet:  Loaded Script Viewer v1.1
Posted on Jul 21, 2007 4:54 am
updated.
Sasuke
Comments: 318
 
mIRC Snippet:  Loaded Script Viewer v1.1
Posted on Jun 15, 2007 10:37 am
I don't see the point in this, but nevertheless, good.

It's just... if it'll flood, why not just go to your Remotes and hit "Open"?
peterpowell
Comments: 48
 
mIRC Snippet:  Server Notice Reporter (For Opers, etc)
Posted on Jun 14, 2007 1:39 pm
Damsulegna,

added the halfdef

-pp
Damsulegna
Comments: 3
 
mIRC Snippet:  Server Notice Reporter (For Opers, etc)
Posted on Apr 19, 2007 2:22 am
I love these kinda snippets, always useful.

May i suggest to halt the orininal SNOTICE you use a HALTDEF snippet?

on ^*:SNOTICE:*: {
if (%snotice == true) {
echo @Snotice $1-
HALTDEF
}
}
Lindrian
Comments: 755
 
mIRC Snippet:  Query/Private Message Blocker
Posted on Apr 15, 2007 9:42 am
Just a lil tip:
!$2
does the same as
$2 == $null
peterpowell
Comments: 48
 
mIRC Snippet:  Query/Private Message Blocker
Posted on Apr 15, 2007 9:37 am
updated...
1 2 Next
Bottom