Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for iamjin04

<style> p.title { text-align: center; font-family: georgia,palatino; font-size: 18px; font-size: 20px; color:blue; font-style:italic; } p.cont { text-align: center; font-family: georgia,palatino; font-size: 18px; font-style:italic; } p.sun { text-align: center; font-family: georgia,palatino; font-size: 18px; font-size: 20px; color: #99cc00; font-style:italic; } p.rew { text-align: center; font-family: georgia,palatino; font-size: 14px; font-style:italic; } </style> <p …

Member Avatar for gon1387
0
230
Member Avatar for iamjin04

> <style type="css"> p.jin { text-align:center; font:georgia; font-size:20px; color:blue; } </style> <html> <p class="jin">Summer Special</p> </html>Quoted Text Here

Member Avatar for gon1387
0
265
Member Avatar for iamjin04

<div id="about-us-page"> <head> <style type="text/css"> a:link {color: #6c6a6a; text-decoration: none; } a:ctive {color: #6c6a6a; text-decoration: none; } a:visited {color: #6c6a6a; text-decoration: none; } a:hover {color: #6c6a6a; text-decoration: none; } table, tr, td { align:center; margin-left:30px; } </style> </head> <center> [soliloquy id="212"] </center> <span><p style="font-size:large">Retail Websites</br> Sites currently operational are:</p></span> <table …

Member Avatar for iamjin04
0
206
Member Avatar for iamjin04

<html> <head> <script language="JavaScript"> function validator() { if (text_form.name.value == "") { alert("Please enter your name"); text_form.name.focus(); return false; } return true; } </script> </head> <body> <form name="text_form" method="get" action="success.html" onsubmit="validator()"> <label for="name"> Name </label> <input type="text" name="name"/> <br /> <input type="submit" value="submit" /> <input type="reset" value="reset" /> </form> </body> …

Member Avatar for iamjin04
0
170
Member Avatar for iamjin04

<html> <body> <form method="Post" action="commentsample.php"> <center><textarea name="comments" rows=2 cols=60></textarea></center> <center><input type="submit" name="submit" value="Cloud"></center> </form> <?php $con = mysql_connect("localhost","root"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("comentss", $con); if(isset($_POST['submit'])){ $comment=$_POST['comments']; $q="insert into table2 (comment) values ('$comment')"; mysql_query($q); } $q="select comment from table2"; $result=mysql_query($q); while($row=mysql_fetch_array($result)){ //this is what i …

Member Avatar for gopi17
0
177