Jump to content

dynamic Textbox


ccrevcypsys

Recommended Posts

Hello out there in php world.lol

ne ways i need help on figuring out how to make a dynamic text area.

What it needs to do is there is a select up above the text area and when someone selects something off of that drop down and they press add (or it just does it) then i need it to post in that textbox. But i am not smart enough to come up with logic that would work out. So this is what i have at the moment.

            <select name="addServ"><?php 
$query = "SELECT * FROM `serviceRequested`";
$result = mysql_query($query);
while ($service = mysql_fetch_array($result, MYSQL_ASSOC)){ ?>
		 <option value="<?php echo $service['id']; ?>"><?php echo $service['serviceName']; ?></option> 
		 <?php } ?></select> <a href='<?php echo "serviceOrder.php?p=so&"; ?>'>Add Item</a>
            <textarea name="servicerequested" disabled="disabled" class="textArea" cols="80" rows="10">
            
            </textarea>

Link to comment
https://forums.phpfreaks.com/topic/82353-dynamic-textbox/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.