hello,<br>i want to embed this code in 520 tag so that it places text file into 520 (abstract) tag before saving the record ....<br><br><br>the following php code accepts a pdf file path, converts it 2 text and place it into the text area. <br>
<br><span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">$file=$_POST[&#39;file&#39;];</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);"><span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">exec (&quot;pdftotext $file &#39;/var/www/testFile.txt&#39;&quot;);</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">
<span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">exec (&quot;tr -d &#39;\012&#39; &lt;/var/www/testFile.txt&gt; /var/www/tf.txt&quot;);</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">
<br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);"><span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">$myFile = &quot;/var/www/tf.txt&quot;;</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">
<span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">$fh = fopen($myFile, &#39;r&#39;);</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);"><span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">$theData = fread($fh, 10000000);</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">
<span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">fclose($fh);</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);"><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">
<br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);"><span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">echo &#39;&lt;textarea name=&quot;stuff&quot; cols=&quot;60&quot; rows=&quot;10&quot;&gt;&#39;;</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">
<span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">echo stripslashes($theData);</span><br style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);"><span style="background-color: rgb(255, 255, 255); color: rgb(204, 0, 0);">echo &#39;&lt;/textarea&gt;&lt;br&gt;&#39;;</span><br>
<br><br>want to place this text into the abstract field(520 tag).<br>
<br><br>plz help me doing  this.<br>Thank u :)<br><br><br><br>