Hi have a code ehich i want to have the number value added to my sql database
this is the html
<option value"43"></b><font face="Verdana" size="2">Burnham</option>
<option value"42"></b><font face="Verdana" size="2">Shirley</option>
<option value"41"></b><font face="Verdana" size="2">Sydenham</option>
my field is a INT (10)
php is
only sometime does this add to my DB.... any ideas why???PHP Code:<?php
if ($action == "save")
{
$result = mysql_query ("INSERT INTO results_team (`team_id`,`team_name`,`team_sh_name`,`parent_club`,`team_logo`,`jumper_url`) Values ('','$team_name','$team_sh_name','$parent_club','$team_logo','$jumper_url')") or die("INSERT error: ".mysql_error());
?>




Reply With Quote