How do I take input off of web page text boxes and put them on MYSQL
database.  This is the page's script.  I also named the file Input.phtml.
I'm very new to this... what am I doing wrong?

 <HTML>
<HEAD>
<TITLE>
Input
</TITLE>
</HEAD>

<BODY>

<P>These are the people I sell to:</P>

         <TABLE BORDER=10>
         <?
             mysql_connect("localhost", "kryste", "*******");
             $result = mysql(mydatabase, "select * from Bidder");
             $num = mysql_numrows($result);
             $i = 0;

             while($i < $num) {
                echo "<TR>n";
                echo "<TD>n";
                echo mysql_result($result,$i,"Last");
                echo "</TD>n<TD>";
                echo mysql_result($result,$i,"First");
                echo "</TD>n<TD>";
                echo mysql_result($result,$i,"Price");
                echo "</TD>n";
                echo "</TR>n";
                  $i++;}
          ?>

          </TABLE>

</BODY>
</HTML>


********************************************************
I get this error: These are the people I sell to:


Warning: Supplied argument is not a valid MySQL result resource in
/home/kryste/Input.phtml on line 16


Thanks,
Pat


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to