[FONT="Tahoma"]I'm fairly green in the exciting world of PHP ... I've been trying to convert this ASP code to PHP ... basically I have a "thankyou.php" page that requires 3 different responses depending on which form is submitted. Below is the "current" ASP variation and I'm in hopes of finding a solution / expertise to make it PHP-able! (3 different forms throughout site feed into this "thankyou.php" form/response page)
<% if request.querystring("ls")="contact" then%>
<p>Thank you for your interest ..... response info number one.</p>
<% elseif request.querystring("ls")="signup" then%>
<p>Thank you for your interest ..... response info number two.</p>
<% elseif request.querystring("ls")="jobs" then%>
<p>Thank you for your interest ..... response info number three.</p>
<% end if%>[/FONT]
I appreciate all and any thoughts/help you may have and please remember I'm eagerly learning the ropes--with that--IF anyone has recommendations to PHP learning via DVD--I'm all ears!!
Thanks again!
Des