This is the code from my first function; I got it from a tutorial, but it still won’t work…
HTML
"You Better Pay Up" Loan ServicesWelcome to "You Better Pay Up" Loan Services
You pay us ten percent every week, or else. My hovercraft costs $
PHP
Loan information <?php $interest_rate = .14; function YouOweMe($cost, $interest_rate) { $weekly_payment = ($cost*$interest_rate); print "You better pay me $$weekly_payment every week, or else!"; } YouOweMe($cost, $interest_rate); ?>Thank you so much for your help!!