PDA

View Full Version : BB Codes / Custom Profile Fields / and CountDown hack


rex_b
03-18-2005, 09:43 PM
Ok so here goes, I will lay it out.

I have the countdown hack that allows members to use bb code and it looks like this My Event Begins in

Now I want to add a custom profile field where the user enters the date information.

Once that is entered correctly I want this to show up under their sig.

Any ideas?

a pity bump

this is a post to make this post move up to be seen for one last chance!

Reeve of shinra
03-19-2005, 07:55 PM
Try entering this in your postbit where you want it to show up. Chance the field5 to whatever your custom profile field # is. You may want to go into phpmyadmin and change the field type to one of the date formats.


<if condition="$post[field5]">
<div>
<Script language='Javascript'>
var rndNum = Math.floor(Math.random() * 10000);
var tempString="$post[field5]";
tempArray=explodeArray(tempString,";");
document.writeln("<form name='form" + rndNum + "' action='javascript:void(0);'>");
document.writeln('<font size=2 color="'+tempArray[2]+'">
IF YOU WANT TEXT ENTER IT HERE
</font><BR>');
document.writeln("<input type=text value='' size=40 name='countdown'>");
document.writeln("</form>");
countdown(tempArray[0], rndNum, tempArray[1]);
</script>
</div>
</if>