Beispiel #1
0
</textarea><span class="checkStatus"></span></td>
	</tr>
    <tr>
    	<th><label for="mobileorphone">Mobile/phone</label></th>
        <td><input type="text" name="mobileorphone" id="mobileorphone" class="vldnoblank vldnum vistaStyle width250" value="<?php 
    echo $service['mobileorphone'];
    ?>
"><span class="checkStatus"></span></td>
    </tr>
    <tr class="fir">
    	<th><label for="description">State</label></th>
        <td>
        <select id="state" name="state" style="width:200px;" class="vldnoblank">
        <option value="">Select One</option>
        		<?php 
    $statelist = $objservice->getstatelist();
    foreach ($statelist as $data) {
        echo "<option value='" . $data['id'] . "'";
        if ($data['id'] == $service['subcategory']) {
            echo "selected='selected'";
        }
        echo ">" . $data['name'] . "</option>";
    }
    ?>
			</select><span class="checkStatus"></span>
        </td>
    </tr>
    <tr>
		<th><label for="jobtype">Service Category</label></th>
		<td><?php 
    $objservicetype = new subcategory("services_category");