I'm sorry if this ambiguous but I'll try my best
I have the following php code from a WordPress Plugin
$url = 'http://mydomain.com/'.$ListingID.'/';
I need to define a value for $ListingID
The value will come from the wordpress database and is found in the table called wp_fsrep_listings
the name of the column in the table is listing_id
and the value is related to a listing page that is similar to a normal wp post page.
Therefore is presume I need to define the "value" in this manner
$ListingID = "value"
How do I define the "value"?
Thank You