Jump to content

dude123

Members
  • Posts

    2
  • Joined

  • Last visited

dude123's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. that worked..thank you very much!! I would like to do that..but I am not in a position to decide on that. Thanks anyway.
  2. I have an ASP page where I have the following. <% strvideos = Session("VideoList")SelList = split(strvideos,"###",-1)UppBound = UBound (SelList,1) for i=0 to UppBound-1%> and then , I put it in a form field like shown below.<input type="hidden" name="Video<%=i+1%>" value="<%=SelList(i)%>"> <%NEXT%>Now, I extract this form and send automatic e-mails using PHP. When I try to extract the content in the form element "Video", I get an error saying its undefined. The extraction code is like this,$strvideos = $_POST[ 'Video' ];and then I try to treat $strvideos as an array and display it. I guess my question is HOW TO EXTRACT THE CONTENT IN THE FORM ELEMENT "Video" . I may be stupid enough not to figure this out but I couldn't. Can any one help me on this.Babu.
×
×
  • Create New...