Search found 5 matches

Search found 5 matches Page 1 of 1
by _Crazy
Sun Jan 09, 2011 10:15 pm
Forum: Tutorials
Topic: Link to two webpages simultaneously
Replies: 8
Views: 3124

Do you mean something like:
Code: Select all
<a href="http://www.google.com/">Google</a>
That will show:
Google

or

Something like:
Code: Select all
<a href="http://www.google.com/" target="_blank">Google</a>
It will look the same, but it will not be.
by _Crazy
Sun Jan 09, 2011 10:07 pm
Forum: Introduce Yourself
Topic: Hello
Replies: 11
Views: 4211

Hey, crazy. You seem like someone I've met before. Are you Crazy Arturo? I am Peperspice. You have the same interests as that guy I used to program with :D Nevertheless, welcome to the site. The home of code! Hope you can help us in our road to a major forum. Yes I am Crazy Arturo :) Anyways, I do ...
by _Crazy
Sun Jan 09, 2011 10:05 pm
Forum: Help & Support
Topic: using an 'if' statement in PHP
Replies: 4
Views: 2489

This is my 'version'/'way of doing it' of php 'if' statements.
Code: Select all
<?php
$Variable1 = "1";
if($Variable == "1") {
echo "Variable = 1";
sleep(rand(2,3));
die;
}
else {
echo "Variable does not equal x";
sleep(rand(2,3));
die;
}
?>
by _Crazy
Sun Jan 09, 2011 9:56 pm
Forum: Introduce Yourself
Topic: Hello
Replies: 11
Views: 4211

Hello everyone my alias is _Crazy and I love to code stuff. My programming skills are: VB6 (Intermediate) VB.NET (Beginner, not noob though) PHP (Intermediate, almost very fluent) HTML (very fluent, of course) I love to play all sorts of games (Flash Games, Video Games, etc.) I am also a very good g...
by _Crazy
Fri Nov 26, 2010 12:02 am
Forum: Help & Support
Topic: PHP Infinite Loops
Replies: 1
Views: 1467

Hello everybody! I am new here, but I am not a noob.. Anyways I will show you an example on how to do loops in PHP ;) Simply in the code where you need to loop something add: for (;;) { //Code To Loop Here }  It's that simple! It's kind of like the 'while' statement. Here is an example of looping ec...
Search found 5 matches Page 1 of 1
Go to advanced search