Hi,
I am new to php/ajax.What i am trying:
I have one drop down list,one test box & a button more.if i click more button same drop down & textbox & more button should open $ further goes on..
I need suggestion ??
what should i use??I have to insert it in to my sql database
need help ??

is this what you mean?

<script type="text/javascript">
showmore()
   {
   document.getElementById('more').style.display="";
   }
</script>

<div id="standard">
 dropdownlist
 texbox etc
<button name='more' onclick="showmore()"/>
</div>
<div id="more" style="display:none">
  more stuff here
</div>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.