How do I set focus on the first field on my form using PHP?
u cant using php cause php is server side, but u can using javascript.
try this in the body tag
<body onLoad="javascript:document.formname.fieldname.focus();">
reg kevin
Great - it worked. Thanks.