php - why is echo changing font size on the rest of my page? -
i'm getting angry @ this, i'm setting jquery dialog box, heres code i'm using echo it:
echo " <div class='dialog' title='edit record'> <form method='post'> <table> <tr> <td>name</td> <td><input type='text' value='$row[name]' name='name'></td> </tr> <tr> <td>cash down</td> <td><input type='text' value='$row[cash]' name='cash'></td> </tr> <tr> <td>amount</td> <td><input type='text' value='$row[amount]' name='amount'></td> </tr> <tr> <td>mem type</td> <td><input type='text' value='$row[type]' name='type'></td> </tr> <tr> <td>code</td> <td><input type='text' value='$row[code]' name='code'></td> </tr> <tr> <td>month</td> <td><input type='text' value='$row[m]' name='m'></td> </tr> <tr> <td>instructor</td> <td><input type='text' value='$row[instructor]' name='instructor'></td> </tr> </table> <input type='submit' value='edit' name='editrenewal'> </form> </div>";
heres page looks before open echo'd dialog:
and when click link triggers dialog turns this:
you can see how bigger , uglier gets
are echo-ing div inside body?
Comments
Post a Comment