Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #107.65K
~161 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Barefootsanders

<?php $con = mysql_connect('localhost', 'root', '') OR die("Error: ".mysql_error()); mysql_select_db('db_name', $con) OR die("Error: ".mysql_error()); function protect($string){ $string = mysql_real_escape_string($string); $string = strip_tags($string); $string = addslashes($string); return $string; } if(!$_POST['submit']){ echo "<table border=\"0\" cellspacing=\"3\" cellpadding=\"3\" align=\"center\">\n"; echo "<form method=\"post\" action=\"".$self."\">\n"; echo "<tr><td colspan=\"2\" align=\"center\" bgcolor=\"#333333\"><font color=\"#ffffff\">Registration Form</font></td></tr>\n"; echo "<tr><td>Username</td><td><input type=\"text\" name=\"username\"></td></tr>\n"; …

Member Avatar for kumar_kagathara
0
161

The End.