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.
Actually me and a friend of mine run a small webdev firm. And we would most certainly be willing to do so, and as far as how much. I assure you that we could offer you a great price but It most certainly depends upon you're ideas. Just hit me up on aim: VetoThisMapSucks or GT:T3RRORISTlemon
Hey, I really don't post here that often but... I'm making a website, and I need some help. I have a great server and I don't need help with any of the programing, design, ect. I am an experienced PHP developer so I should be able to handle all of that on my own. What I need is ideas... I'm out of ideas. If you have any ideas at all, even domain names please post them. If you want to help out more then just ideas, maybe someone could help do content on the site, that would be cool too; just let me know.
I'm sure it will pick back up as soon a summer comes. Think about it most of the people here are still in school; so as soon as they are out the site will pick backup. I have run sites before and have seen this happen many times firsthand.