I thought somebody would have made this by now, but there's currently no site (that I know of) to match you up with other players that are looking to play custom games with you. I am a PHP web developer and would be more that able to create such a site. I'm looking for anyone that would like to help, you dont have to have any programming/webdev experience however it would be greatly appreciated. I could have this site done in a matter of days. I just want to know if this is something people would be interested it.
This is legit, I found a video. Look at the guys secondary and he even shoots it (at 1:28). It must be the upgraded brute shot because it looks like a grenade that he shoots. http://www.youtube.com/watch?v=lQH3ydAOUwg
Or you could do it with php and mysql. DB TABLE:
id - int( - auto_increment
text - varchar(300)
index.php :
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if(!$link){
die('Not connected : ' . mysql_error());
}
$db_sel = mysql_select_db('dbname', $link);
if(!$db_sel){
die('Can not select db : ' . mysql_error());
}
$num = mysql_num_rows(mysql_query("SELECT * FROM title_quotes"));
$newid = rand(1,$num);
$titleary = mysql_fetch_array(mysql_query("SELECT * FROM title_quotes WHERE id = '".$newid."'"));
echo '<title>MySite.com - '.$titleary['text'].'</title>';
?>
add.php :
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if(!$link){
die('Not connected : ' . mysql_error());
}
$db_sel = mysql_select_db('dbname', $link);
if(!$db_sel){
die('Can not select db : ' . mysql_error());
}
if($_POST['text']){
mysql_query("INSET INTO title_quotes (text) VALUES ('".mysql_real_escape_string($_POST['text'])."')");
}
echo '<form action="add.php" method="post">';
echo '<form name="text" id="text">';
echo '</form>';
?>
There's no security on this so if this is public anybody could post to the db. But it is guarded from SQL injections.