Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~666 People Reached
Favorite Tags
Member Avatar for CyberPirate1

Hello all! I'm trying to make an IRCbot, but I have an issue I just can't seem to get through. [CODE]<?php class irc { // server connect public $host = "irc.freenode.net"; public $port = 6665; public $channel = "#dinksmallwood"; // client-side public $username = "GlennBOT"; public $hostname = "ti0184a340-0784.bb.online.no"; public …

Member Avatar for rbrt13
0
288
Member Avatar for toasty525

Hi, i have the following snippet of php that i wrote but cant figure out why it wont work all the variables have been set before hand. Heres the PHP: [code=php]echo "<table border='1'> <tr>"; if ($win_score > $lose_score) { echo " <th>Winner</th> <th>Loser</th> <th>Win Score</th> <th>Lose Score</th> </tr>"; while($row = …

Member Avatar for network18
0
90
Member Avatar for CyberPirate1

So, what I'm trying to do is to check if a letter already exists within an array, so I use a for loop and it works very well. So if the character exists within the array, it will not add the letter you put in the input box into the …

Member Avatar for Geekitygeek
0
142
Member Avatar for CyberPirate1

Okey, so what I'm trying to do is to set about 5 labels to visible using a for loop. [CODE] int nr_bokstaver = slutt_losning.Length; for (int index = 0; index <= nr_bokstaver; index++) { label+index.Visible = true; }[/CODE] I want the name of the label to change according to the …

Member Avatar for Geekitygeek
0
146