コード例 #1
0
ファイル: printDA.php プロジェクト: JulienRst/Biothys-Manager
	</div>
	<div class="form-group">
		<label for="zip">Zip</label>
		<input type="text" class="form-control" name="zip" value="<?php 
echo $address->getZip();
?>
"/>
	</div>
	<div class="form-group">
		<label for="city">City</label>
		<input type="text" class="form-control" name="city" value="<?php 
echo $address->getCity();
?>
"/>
	</div>
	<div class="form-group">
		<label for="state">State</label>
		<input type="text" class="form-control" name="state" value="<?php 
echo $address->getState();
?>
"/>
	</div>
	<div class="form-group">
		<label for="country">Country</label>
		<input type="text" class="form-control" name="country" value="<?php 
echo $address->getCountry();
?>
"/>
	</div>	
	<button class="btn btn-success">Set</button>
</form>