| KingOfTheSouth |
05-04-2009 08:38 PM |
Am I inputting data correctly?
I am trying to input data into a users account. If they vote for my site then they get credits on my site. I was wondering am I even doing this right?
PHP Code:
<?
include("game_html.php");$game="yes";
$user = mysql_fetch_array(mysql_query("SELECT id FROM $tab[user] WHERE id='$id';"));
$userid = $user[id];
secureheader();
?>
<br>
<center><b><font size="+1">Vote for Clubbinkings and get FREE credits!</font></b>
<br><br><b><font color="#8F92E8">If you enjoy ClubbinKings and want to get some free credits, please vote! </font></b>
<br><br>
<br><br>
<table align="center" width="80%">
<tr bgcolor="#333333">
<td width="30%">
<center>
<a href="http://www.mpogr.com/vote.php?id=907"><img src="http://www.mpogr.com/dynamic/image.php?id=907" border="0" width="180" height="90" alt="Vote on MPOGR" />
</center>
</td>
<td>Reward: <font color="8F92E8">100 Credits</font><br><small>(Click banner for credits to be counted, not text link!)</small><br><br>Click Rate: <font color="8F92E8">Daily!</font>
</td>
</tr>
</table>
<br><br>
<table align="center" width="80%">
<tr bgcolor="#333333">
<td width="30%">
<center>
<a href="http://www.toprpgames.com/vote.php?idno=2224&username=<?=$v[0]?>&password=<?=$v[1]?>"><img border="0" src="http://www.toprpgames.com/images/banners/toprpg_88x31-3.gif" alt="" /></a><br>
</center>
</td>
<td>Reward: <font color="8F92E8"></font><br><small>(Click banner for credits to be counted, not text link!)</small><br><br>Click Rate: <font color="8F92E8">Weekly!</font>
</td>
</tr>
</table>
<br><br>
<br><br>
<?
gamefooter();
?>
|