Here is my code again:<br><br>Row:<br>!!!<br>.......Code.............<br><br>(:adl append entry:)<br><br><br>Form Row:<br>!!!<br>&#39;&#39;&#39;Enter a New Company:&#39;&#39;&#39;<br>(:linebreaks:)<br>(:input form method=post enctype=multipart/form-data :)
<br>(:input hidden name=n value={$FullName}:)<br>(:input hidden name=action value=postupload:)<br>File to upload:&nbsp;&nbsp; (:input file name=&#39;uploadfile&#39;:)&nbsp;&nbsp;<br>Name of upload: (:input text name=&#39;upname&#39;:) (IMPORTANT: if the file name is 
intel-logo.jpg, you must type in intel-logo.jpg in this field or the image will not show)<br><br>(:adl form entry:)<br>(:table:)<br>(:cellnr:)Company Profile:<br>(:cell:)(:input textarea profile rows=10 cols=34:)<br>(:cellnr:)Company URL: 
<br>(:cell:)(:input text curl size=45:)<br>(:cellnr:)Faculty Affiliation: <br>(:cell:)(:input text faculty size=45:) <br>(:cellnr:)Faculty Title: <br>(:cell:)(:input text ftitle size=45:)<br>(:cellnr:)Faculty URL:&nbsp;&nbsp;<br>(:cell:)(:input text furl size=45:)
<br>(:cellnr:)Outcome:&nbsp;&nbsp;<br>(:cell:)(:input text outcome size=45:)<br>(:cellnr:)<br><br>(:input end:)<br>(:input submit ok Enter:)<br>(:adl templatepage MultiLineTemplate:)<br>(:adl end:)<br><br>----<br><br><br>MultilineTemplate:
<br>!!!<br>(:table border=0 cellspacing=0 cellpadding=15:)<br>(:cellnr width=33% align=left:)<br>[[{curl} | Attach:{upname}]]<br><br>{profile}<br><br>[[{curl} | {curl}]]<br><br>(:cell width=33% align=left:)<br>[[{furl} | {faculty}]], {ftitle}
<br><br>(:cell width=33% align=left:)<br>{outcome}<br>(:tableend:)<br>----<br><br><br><br><br>On 3/20/07, April Barrett &lt;<a href="mailto:aprilbar@gmail.com">aprilbar@gmail.com</a>&gt; wrote:<br>&gt; Hello again,<br>&gt; 
<br>&gt;&nbsp;&nbsp; I was able to get this to work using what I initially wrote.&nbsp;&nbsp;My<br>&gt; problem now is this:<br>&gt; <br>&gt; My current layout consists of such.<br>&gt; <br>&gt; ROW1<br>&gt; Image&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Name
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Outcome<br>&gt; Text Text<br>&gt; <br>&gt; <br>&gt; ROW2<br>&gt; Image&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Name<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Outcome<br>&gt; Text Text<br>&gt; <br>&gt; <br>&gt; ROW3<br>&gt; Image&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Name
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; Outcome<br>&gt; Text Text<br>&gt; <br>&gt; Form to add a row and an image with the same format as the previous<br>&gt; rows underneath the last row but above the form.<br>&gt; <br>&gt; The problem is is that I am using the Section Edits denoted by !!! and
<br>&gt; if I add an (:adl append entry:)&nbsp;&nbsp;on the last line (row three), once<br>&gt; another one is added it throws the hole thing off.<br>&gt; <br>&gt; It seems fine after the first new row but then it gets pretty wonky on
<br>&gt; the second addition by adding some two rows with bad formatting.<br>&gt; <br>&gt; Any ideas on how I can clean this up?<br>&gt; <br>&gt; <br>&gt; <br>&gt; On 3/19/07, Martin Fick &lt;<a href="mailto:mogulguy@yahoo.com">
mogulguy@yahoo.com</a>&gt; wrote:<br>&gt; &gt; Unfortunately, I don&#39;t understand the upload mechanism<br>&gt; &gt; very well and if/how one can perform an upload along<br>&gt; &gt; with posting other data.&nbsp;&nbsp;Are you sure this used to
<br>&gt; &gt; work?&nbsp;&nbsp;Or was it perhaps it two steps, submit the<br>&gt; &gt; image, then submit the details?<br>&gt; &gt;<br>&gt; &gt; It looks like you are creating two distinct forms<br>&gt; &gt; which is probably not what you want if you are trying
<br>&gt; &gt; to do the entire submission at once.&nbsp;&nbsp;Do a &#39;view<br>&gt; &gt; source&#39; in your browser to see if that is the case?<br>&gt; &gt; If so, you probably want to eliminate the (:adl form<br>&gt; &gt; entry:) since you will have to create it manually.
<br>&gt; &gt; Next, you will have to be sure to give the form you<br>&gt; &gt; create manually the correct name since you will not be<br>&gt; &gt; using the adl directive to do this.&nbsp;&nbsp;Probably<br>&gt; &gt; something like this:&nbsp;&nbsp;(:input form entry method=post
<br>&gt; &gt; enctype=multipart/form-data:), check the syntax (note<br>&gt; &gt; the &#39;entry&#39; as the name).<br>&gt; &gt;<br>&gt; &gt; You then would have to somehow deal with the action,<br>&gt; &gt; does the adl need an action?&nbsp;&nbsp;Can it handle two
<br>&gt; &gt; actions (you already have a &#39;postupload&#39; action<br>&gt; &gt; defined)?<br>&gt; &gt;<br>&gt; &gt; Lastly, where are you trying to post this?&nbsp;&nbsp;You<br>&gt; &gt; mention the same page as the photo, but you I am not
<br>&gt; &gt; sure where you are trying to post the photo?&nbsp;&nbsp;It looks<br>&gt; &gt; like from your form that you are trying to post it to<br>&gt; &gt; the current page?<br>&gt; &gt; &gt; (:input hidden name=n value={$FullName}:)
<br>&gt; &gt; So in the current page wherever you would like your<br>&gt; &gt; new table posted you would put an (:adl append:) line,<br>&gt; &gt; perhaps somewhere below your forms?<br>&gt; &gt;<br>&gt; &gt; -Martin<br>&gt; &gt;
<br>&gt; &gt; --- April Barrett &lt;<a href="mailto:aprilbar@gmail.com">aprilbar@gmail.com</a>&gt; wrote:<br>&gt; &gt;<br>&gt; &gt; &gt; I am sorry but can you tell me where to add the<br>&gt; &gt; &gt; append.&nbsp;&nbsp;I want to
<br>&gt; &gt; &gt; have all of the data appended the same page with the<br>&gt; &gt; &gt; image.&nbsp;&nbsp;I tried<br>&gt; &gt; &gt; to add append but I only get a confirmation that the<br>&gt; &gt; &gt; image was<br>&gt; &gt; &gt; uploaded and nothing else...
<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; On 3/16/07, Martin Fick &lt;<a href="mailto:mogulguy@yahoo.com">mogulguy@yahoo.com</a>&gt; wrote:<br>&gt; &gt; &gt; &gt; It also looks like you don&#39;t have an append or<br>&gt; &gt; &gt; prepend
<br>&gt; &gt; &gt; &gt; entry on this page.&nbsp;&nbsp;Since you don&#39;t have a target<br>&gt; &gt; &gt; &gt; listed here:<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; (:adl form entry:)<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; it will look to add the text to the current page
<br>&gt; &gt; &gt; and<br>&gt; &gt; &gt; &gt; if the append/prepend tags are not there, it will<br>&gt; &gt; &gt; do<br>&gt; &gt; &gt; &gt; nothing,<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; -Martin<br>&gt; &gt; &gt; &gt;
<br>&gt; &gt; &gt; &gt; --- April Barrett &lt;<a href="mailto:aprilbar@gmail.com">aprilbar@gmail.com</a>&gt; wrote:<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; !!!<br>&gt; &gt; &gt; &gt; &gt; (:linebreaks:)<br>&gt; &gt; &gt; &gt; &gt; (:input form method=post
<br>&gt; &gt; &gt; enctype=multipart/form-data<br>&gt; &gt; &gt; &gt; &gt; :)<br>&gt; &gt; &gt; &gt; &gt; (:input hidden name=n value={$FullName}:)<br>&gt; &gt; &gt; &gt; &gt; (:input hidden name=action value=postupload:)
<br>&gt; &gt; &gt; &gt; &gt; File to upload:&nbsp;&nbsp; (:input file<br>&gt; &gt; &gt; name=&#39;uploadfile&#39;:)<br>&gt; &gt; &gt; &gt; &gt; Name of upload: (:input text name=&#39;upname&#39;:)<br>&gt; &gt; &gt; &gt; &gt; (IMPORTANT: if the file
<br>&gt; &gt; &gt; &gt; &gt; name is intel-logo.jpg, you must type in<br>&gt; &gt; &gt; &gt; &gt; intel-logo.jpg in this field<br>&gt; &gt; &gt; &gt; &gt; or the image will not show)<br>&gt; &gt; &gt; &gt; &gt; (:adl form entry:)
<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; (:table:)<br>&gt; &gt; &gt; &gt; &gt; (:cellnr:)Company Profile:<br>&gt; &gt; &gt; &gt; &gt; (:cell:)(:input textarea profile rows=10<br>&gt; &gt; &gt; cols=34:)<br>
&gt; &gt; &gt; &gt; &gt; (:cellnr:)Company URL:<br>&gt; &gt; &gt; &gt; &gt; (:cell:)(:input text curl size=45:)<br>&gt; &gt; &gt; &gt; &gt; (:cellnr:)Faculty Affiliation:<br>&gt; &gt; &gt; &gt; &gt; (:cell:)(:input text faculty size=45:)
<br>&gt; &gt; &gt; &gt; &gt; (:cellnr:)Faculty Title:<br>&gt; &gt; &gt; &gt; &gt; (:cell:)(:input text ftitle size=45:)<br>&gt; &gt; &gt; &gt; &gt; (:cellnr:)Faculty URL:<br>&gt; &gt; &gt; &gt; &gt; (:cell:)(:input text furl size=45:)
<br>&gt; &gt; &gt; &gt; &gt; (:cellnr:)Outcome:<br>&gt; &gt; &gt; &gt; &gt; (:cell:)(:input text outcome size=45:)<br>&gt; &gt; &gt; &gt; &gt; (:cellnr:)(:input submit ok Enter:)<br>&gt; &gt; &gt; &gt; &gt; (:adl templatepage [[MultiLineTemplate]]:)
<br>&gt; &gt; &gt; &gt; &gt; (:adl end:)<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; **************************************<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; My form template string consists of more than
<br>&gt; &gt; &gt; one<br>&gt; &gt; &gt; &gt; &gt; line, so I am<br>&gt; &gt; &gt; &gt; &gt; specifying the template in a seperate wiki-page<br>&gt; &gt; &gt; &gt; &gt; called<br>&gt; &gt; &gt; &gt; &gt; (MultiLineTemplate:
<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; !!!<br>&gt; &gt; &gt; &gt; &gt; (:table border=0 cellspacing=0 cellpadding=15:)<br>&gt; &gt; &gt; &gt; &gt; (:cellnr width=33% align=left:)<br>&gt; &gt; &gt; &gt; &gt; [[{curl} | Attach:{upname}]]
<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; {profile}<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; [[{curl} | {curl}]]<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; (:cell width=33% align=left:)
<br>&gt; &gt; &gt; &gt; &gt; [[{furl} | {faculty}]], {ftitle}<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; (:cell width=33% align=left:)<br>&gt; &gt; &gt; &gt; &gt; {outcome}<br>&gt; &gt; &gt; &gt; &gt; (:tableend:)
<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; ____________________________________________________________________________________<br>&gt; &gt; The fish are biting.<br>&gt; &gt; Get more visitors on your site using Yahoo! Search Marketing.
<br>&gt; &gt; <a href="http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php">http://searchmarketing.yahoo.com/arp/sponsoredsearch_v2.php</a><br>&gt; &gt;<br>&gt; <br>