Form alter a text field to be readonly the ghetto way

Categories:

<?php
 
$form['Association_Name']['#title'] = $form['field_association_name']['#title'];
		$form['Association_Name']['#value'] = "<label><strong>Association Name:</strong></label><br />" . $form['field_association_name'][0]['#default_value']['value'];
		$form['Association_Name']['#weight'] = $form['field_association_name']['#weight'];
		$form['field_association_name']['#access'] = 0;
 
?>