<?php $percentage = 50; $totalWidth = 350; $new_width = ($percentage / 100) * $totalWidth; echo $new_width; // output 175 ?>