I use Perch for CMS, and in order to output content, you put the following code in your page:
<?php perch_content('Phone Number'); ?>
However, I need to make the outputted content into a php variable, something like:
$phonenumber = perch_content('Phone Number');
I'm a complete php novice and I've tried a few things but nothing is working.
Any ideas?