Recent content by Devine Caesar

  1. D

    Php question: why it shows not the whole string from DB?

    echo "... value=" . $row['Name'] . " ...</td>" When this executes it returns as html code literally: value=John Dee ... You need " quotes " around it else john is interpreted as the value and dee is interpreted as some unknown tag. So change " ... value=" . $row['Name'] . "... </td>" to...
  2. D

    What is the best program for regular HTML coding?

    To switch off auto css in Dreamweaver: Edit > Preferences On the first page under Editing Options, uncheck the box that says 'Use CSS instead of HTML Tags'
Back
Top