?php

// Define variables for the rental agreement form
$property_address = “123 Main St.”;
$landlord_name = “John Smith”;
$tenant_name = “Jane Doe”;
$rent_amount = 1000;
$lease_start_date = “2023-04-09”;
$lease_end_date = “2024-04-09”;

// Generate the rental agreement form HTML
$html = ‘



Rental Agreement Form

Rental Agreement

Property Address: ‘.$property_address.’

Landlord Name: ‘.$landlord_name.’

Tenant Name: ‘.$tenant_name.’

Rent Amount: ‘.$rent_amount.’

Lease Start Date: ‘.$lease_start_date.’

Lease End Date: ‘.$lease_end_date.’



‘;

// Output the rental agreement form
echo $html;

?>