I guess that was usless, lolHmm what else could you do it on..

I guess that was usless, lolHmm what else could you do it on..
Well you obviously could do it on forums that allow it (dont see why Habbox dont).
“two players, two sides.
one is light, one is dark.”
- John Locke
Mmmm i uploaded it to my site
www.carlstac.com/test.php
» Carlsta «
» Currently Got 1571 Reputation Points «
Yeah we've already said it doesnt work.
“two players, two sides.
one is light, one is dark.”
- John Locke
It does work sort off..
» Carlsta «
» Currently Got 1571 Reputation Points «
Lol, Im thinking, hmm how about this:
On project washing machine, you can have a custom message, when you click your washing machine it comes up with the message. The message is in the source of the page anyway, so see if you can get the custom message of a washing machine by the user (in the source aswell) by using that:
Basicly:
It gets the custom message from the source by looking for the member
Link:
http://www.tehwasher.co.uk/view.php
I havent tried it.PHP Code:<?php
function getMessage($name){
$data = file_get_contents("http://www.tehwasher.co.uk/view.php");
$message = explode($name."'s Washing Machine<br />Custom Message: <br />", $data);
$message = explode('">', $message[1]);
$message = trim($message[0]);
return $message;
}
echo getMessage("Ryan");
?>
“two players, two sides.
one is light, one is dark.”
- John Locke
Well done! It works!I havent tried it.PHP Code:<?php
function getMessage($name){
$data = file_get_contents("http://www.tehwasher.co.uk/view.php");
$message = explode($name."'s Washing Machine<br />Custom Message: <br />", $data);
$message = explode('">', $message[1]);
$message = trim($message[0]);
return $message;
}
echo getMessage("Ryan");
?>
Thanks.
“two players, two sides.
one is light, one is dark.”
- John Locke
Want to hide these adverts? Register an account for free!