Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by danielleDee

  1. danielleDee

    Results Display skipping 1st row - mySQL

    Hi! When I display the entire results from a database table (mySQL), for some reason the 1st line is left out. My code is: <?php include_once ("dbc.php"); $sql=@mysql_query ("SELECT * FROM `my_desc`"); $row=mysql_fetch_array($sql); $num_rows=mysql_num_rows($sql); if ($num_rows < 0) {...
  2. danielleDee

    Trouble displaying variables

    Hi The reason the table html is stored in a database field is because the table structure must be editable in our content management system. The only glitch is the variable included in the table does not display.
  3. danielleDee

    Trouble displaying variables

    Hi I have the following code stored in FIELD2 in a database (mySQL): <table width="100%" height="200px"> <tr> <td><?php echo($display["FIELD1"]); ?></td> <td>&nbsp</td> </tr> </table> In my script I have the following code: <?php while ($display = mysql_fetch_array($data)) {...
  4. danielleDee

    Adding values to text field from popup - JavaScript

    Thats exactly what I need! Thanx!!
  5. danielleDee

    Adding values to text field from popup - JavaScript

    Hi All I need to do the following in javascript: I have a text field with a "format" button. When the button is clicked a popup opens with say 3 checkbox options: paragraph, bold, underline. The user can then enter text in the text box and apply formatting to the text entered. When the...

Part and Inventory Search

Back
Top