I am so friggin lost... help with echo command

gesf

Active member
Hey Archmaille,

Put this next code at the very top of your script:
Code:
<?php

error_reporting(E_ALL);
ini_set("display_errors", 1);

?>
I bet you'll know why it's getting blank :)
 
hello Hopefully this will help you
Take a look at how i wrote the syntax ---cols=\"75\">" . $row['summary'] . "</textarea></p>---
Code:
<?php
echo "<form id=\"submit\" action=\"editprofile.php5\" method=\"POST\" name=\"submit\">
         <center>
            <p>Display Name</p>
            <p><input type=\"text\" name=\"dname\" value=\"\" size=\"45\" maxlength=\"50\" /></p>
            <p>My picture</p>
            <p><input type=\"file\" name=\"image\" /> <br /><small>Image must be .jpg format and contain no spaces or other invalid characters.</small></p>
            <p>About Me</p>
            <p><textarea name=\"pro-sum\" rows=\"20\" cols=\"75\">" . $row['summary'] . "</textarea></p>
            <p>Hobby's</p>
            <p><input type=\"text\" name=\"hobby\" value=\"\" size=\"75\" maxlength=\"100\" /></p>
            <p><div align=\"center\"><input type=\"submit\" name=\"submit\" value=\"Update my profile!\" /></div></p>
         </center>
      </form>";
 ?>
 
Back
Top