How to use PHP variables in Soap requests? -
i using soap element in code, , facing problem.
want add php variable in soap element:
<hotelref hotelcode="00001659"/> here instead of 00001659, have use dynamic php variable below:
$hotel_id i have tried directly putting variable in place of hotelcode, not working.
how can this? please me.
thanks in advance
<hotelref hotelcode="<?php echo $hotel_id ?>"/>
Comments
Post a Comment