HELP!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
robertbarzyk
Forum Newbie
Posts: 19
Joined: Tue Oct 06, 2009 4:12 pm

HELP!!

Post by robertbarzyk »

okay, im writing a site for someone, to help people get thousands of myspace requests (sounds pretty dumb i know)
each person needs to get above 0 points a day
nobody with negative points will be show on the add page
after adding each person i would like the button to fade out(i can do this)
but after every link on the page has been clicked i want the page to redirect

here is my script
could somebody modify what i have
throw in the code needed
it would be very much appreciated !


# <?php
#
# $ip = $_SERVER['REMOTE_ADDR'];
#
# mysql_connect("localhost", "unrealar_me", "xxxxxx") or die(mysql_error());
# mysql_select_db("unrealar_login") or die(mysql_error());
#
# mysql_query("UPDATE clicks SET clicks=0 WHERE ip='$ip'")
# or die(mysql_error());
#
# ?>
#
# <html>
# <head><title>Get Famous</title>
# <LINK REL=StyleSheet HREF="main.css" TITLE="Contemporary">
# </head>
# <body>
#
# <center><div class="header";>
# <?php
# $fid = $_GET['user'];
#
# ?>
# <?php
#
#
#
# $start='<img src="';
# $end='">';
#
# mysql_connect("localhost", "unrealar_me", "xxxxxx") or die(mysql_error());
# mysql_select_db("unrealar_images") or die(mysql_error());
#
# $result = mysql_query("SELECT * FROM header")
# or die(mysql_error());
#
# while($row = mysql_fetch_array( $result )) {
# // Print out the contents of each row into a table
# echo $start." ".$row['head']." ".$end;
#
# }
# echo "</table>";
# ?>
# </div>
#
#
# <center><div "class="riders";>
# <?php
# $add='<a href="http://www.unrealart.org/addme.php?friendid=';
# $me='" target="_blank"><img border="0" src="addme1.gif"> ';
#
# mysql_connect("localhost", "unrealar_me", "xxxxx") or die(mysql_error());
# mysql_select_db("unrealar_login") or die(mysql_error());
#
# $result = mysql_query("SELECT * FROM people WHERE points>=0")
# or die(mysql_error());
#
# while($row = mysql_fetch_array( $result )) {
# // Print out the contents of each row into a table
# echo $add."".$row['friendid']."".$me;
#
#
# }
# echo "</table>";
#
# </div></center>
# </body>
# </html>
#
#
#
Eric!
DevNet Resident
Posts: 1146
Joined: Sun Jun 14, 2009 3:13 pm

Re: HELP!!

Post by Eric! »

You can pay someone to do this for you, but on this forum people rarely write code for other people. Why don't you write the code yourself and if you get stuck come here and ask for help?
Post Reply