Jump to content

cbox


T3RROR

Members+
  • Posts

    33
  • Joined

  • Last visited

About T3RROR

Profile Information

  • Gender
    Male

Contact Methods

  • AIM
    VetoThisMapSucks
  • MSN
    Lienau@live.com
  • Website URL
    http://
  • ICQ
    0
  • Gamertag
    T3RRORISTlemon

T3RROR's Achievements

Private

Private (4/44)

0

Reputation

  1. Thats a good idea, thanks.
  2. I've posted this on a few forums, but thanks for your input. If I get a lot of feedback with people looking for this, I'll defiantly do it.
  3. 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.
  4. 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
  5. http://img34.imageshack.us/img34/2216/screenshothv.gif
  6. 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.
  7. Look closely at the opacity of the text... But a pretty decent photoshop after all... goodjob lax
×
×
  • Create New...