Wp themes - Debt Consolidation - Musica Reggaeton - Submit articles - Debt Consolidation

PDA

View Full Version : DP "something descriptive here will yield"


dethfire
Aug 23rd 2008, 10:31 am
I'm trying to duplicate this DP function on my forums. I simply copied the code. It works fine until you preview a thread and then it resets the title. Here it doesn't happen. I don't see why it is different.

<td><input type="text" class="bginput" name="subject" value=" [Something descriptive here will yield more responses]" size="52" maxlength="85" tabindex="1" onfocus="if(this.value==' [Something descriptive here will yield more responses]')this.value='';" onblur="if(this.value=='')this.value=' [Something descriptive here will yield more responses]';"></td>

jack_ss
Aug 26th 2008, 4:35 pm
In your PHP (or whatever scripting language) code, you need to only put your default value if an existing subject does not exist.

i.e:

<input ... ... value="<?= $subject?$subject:" [Something descriptive here will yield more responses]"; ?>">

Get it?