<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018120" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018120</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106355</link>
    <description> &lt;p&gt;You&#039;d just add an extra &lt;a href&gt;. I think that&#039;s more of a HTML output question than a Perl one?&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 Apr 2002 10:31:22 +0000</pubDate>
 <dc:creator>Wil</dc:creator>
 <guid isPermaLink="false">comment 1106355 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106351</link>
    <description> &lt;p&gt;well, in perl i have this links:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;a href=&amp;quot;$cgi_bin_url/adcenter.cgi?task=edit_adtype&amp;amp;tid=$tidref[$k]-&amp;gt;{TID}&amp;amp;cache=$cache&amp;quot;&amp;gt;Edit&amp;lt;/a&amp;gt; |&lt;br /&gt;				&amp;lt;a href=&amp;quot;$cgi_bin_url/adcenter.cgi?task=view_adtype_history&amp;amp;tid=$tidref[$k]-&amp;gt;{TID}&amp;amp;cache=$cache&amp;quot;&amp;gt;Stats&amp;lt;/a&amp;gt; &lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;now i want to add one more link &quot;Price&quot; which will link to my php page. how can i do that??&lt;/p&gt;
 </description>
     <pubDate>Mon, 08 Apr 2002 09:33:59 +0000</pubDate>
 <dc:creator>joyce</dc:creator>
 <guid isPermaLink="false">comment 1106351 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106041</link>
    <description> &lt;p&gt;what you&#039;re trying to do is very ugly.  you normally don&#039;t want to extend an application using a different language, except with something like COM or ActiveX that is designed specifically for that purpose. &lt;/p&gt;
&lt;p&gt;Like Wil said, if all you need to do is modify data in a database you can easily write a second application to give you the functionality you desire, like the admin control panel, but you&#039;re gonna have alot of trouble if you want to integrate it with the existing scripts.&lt;/p&gt;
&lt;p&gt;Im fairly certain SSI will not be parsed if theyre in a dynamic document, for instance if your php or perl script prints out a SSI command it will not be evaluated.  I could be wrong, ive never tried it as using perl or php eliminates the need for SSI, but even if it did work it would be extremely sloppy and you may qualify for a most rigged scripts award.&lt;/p&gt;
&lt;p&gt;i&#039;d suggest you either learn Perl (it&#039;s very similar to PHP) or find a similar program written in PHP.&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
 </description>
     <pubDate>Wed, 03 Apr 2002 16:30:09 +0000</pubDate>
 <dc:creator>ROB</dc:creator>
 <guid isPermaLink="false">comment 1106041 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106028</link>
    <description> &lt;p&gt;Couldn&#039;t you just use a SSI command to include the perl into one part of the page and then the php into another? Just an idea?&lt;/p&gt;
 </description>
     <pubDate>Wed, 03 Apr 2002 12:32:06 +0000</pubDate>
 <dc:creator>a_gajic</dc:creator>
 <guid isPermaLink="false">comment 1106028 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106024</link>
    <description> &lt;p&gt;OK.&lt;/p&gt;
&lt;p&gt;So you have an administrative front end writtin in Perl? And you now want to create a user-based system using your knowledge of PHP?&lt;/p&gt;
&lt;p&gt;Interesting .&lt;/p&gt;
&lt;p&gt;Do you know what kind of database the system uses? Does it use a SQL database of some sort? If so, then it should be preety easy to write a new application that works off the same database.&lt;/p&gt;
&lt;p&gt;If it&#039;s using flat-file databases, you are going to have a lot more difficulty - but it shouldn&#039;t be impossible. If you&#039;re going to work with PHP let&#039;s hope that the information is stored in a SQL database. PHP is very good with making database routines easier.&lt;/p&gt;
&lt;p&gt;Now can you provide a link to the perl page you need ammended? When you say &quot;&lt;em&gt;i was to add some more features in it&lt;/em&gt;&quot; do you mean you want to add more options to current select field or do you actually want to create new fields where people can enter information? The second of these options is going to be a little tricky. I will most probably need to see the source code of your code before being to help you.&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
 </description>
     <pubDate>Wed, 03 Apr 2002 08:50:37 +0000</pubDate>
 <dc:creator>Wil</dc:creator>
 <guid isPermaLink="false">comment 1106024 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106012</link>
    <description> &lt;p&gt;actually what i have here is something like a banner program written in perl. i was to add some more features in it. for eg, for admin page, add 2 more fields for them to choose. and for user page, add few more features which will be written in php. (cos i dono perl) i need to create a sign up page for user and then store it in the exsiting db. and also create a few more page, where user can change the settings....and retrieve the data from the existing tables. and from the perl page, i need to create a few links which will linked to php page...&lt;/p&gt;
 </description>
     <pubDate>Wed, 03 Apr 2002 02:22:27 +0000</pubDate>
 <dc:creator>joyce</dc:creator>
 <guid isPermaLink="false">comment 1106012 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1106001</link>
    <description> &lt;p&gt;Jumping between languages is messy, and should be avoided. Perl had a DBI you can use.&lt;/p&gt;
 </description>
     <pubDate>Tue, 02 Apr 2002 20:38:28 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1106001 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1105994</link>
    <description> &lt;p&gt;While you&#039;re answering Wil, who will probably help you immeasurably, you can link to anything within perl -- the query string you&#039;d send to the php page is just text to it if you escape it properly.&lt;/p&gt;
 </description>
     <pubDate>Tue, 02 Apr 2002 18:25:39 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1105994 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1105971</link>
    <description> &lt;p&gt;OK.&lt;/p&gt;
&lt;p&gt;Let&#039;s take 2 steps backwards here.&lt;/p&gt;
&lt;p&gt;First off; can you tell me what you already have? And then tell me what you&#039;re trying to achieve? And then you can tell me your level of knowledge in this field.&lt;/p&gt;
&lt;p&gt;From the very rought information you&#039;ve already provided it sounds to me like you&#039;re trying to manage some sort of database? Am I right?&lt;/p&gt;
 </description>
     <pubDate>Tue, 02 Apr 2002 10:40:21 +0000</pubDate>
 <dc:creator>Wil</dc:creator>
 <guid isPermaLink="false">comment 1105971 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-perl-language#comment-1105970</link>
    <description> &lt;p&gt;well, wat if i want to add just a link in perl that will link to php page to execute?(update, insert, delete)??&lt;/p&gt;
 </description>
     <pubDate>Tue, 02 Apr 2002 10:33:42 +0000</pubDate>
 <dc:creator>joyce</dc:creator>
 <guid isPermaLink="false">comment 1105970 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
