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:

before

and when click link triggers dialog turns this:

grrr

you can see how bigger , uglier gets

are echo-ing div inside body?


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -