Hi all, I am trying to get a one time offer page to pop up on my site for the first day that a member joins. I tried to get help in the foum for the script. It is a dolphin script. One person responded and gave me half the code and told me what needed to come next but not the code. Looking to get some help here to finish it. Newbie to php. Was also wondering does the code vary depending on the script? Here is what the other person started. Doesnt seem to difficult to me .. i think it can be done with a PHPBLOCK using Deanos tools, insert it in profiles page .. thats the page every new user will land on after registration (edited - I have that mod and it inserts php code into the pages you want.) i cant be bothered to figure this thing out right now, but the code below will get you started $iProfileID = getID( $_GET['ID'] ); $oDb = new BxDolDb(); $sSQLQuery = "SELECT DateReg FROM `Profiles` WHERE `ID` = $iProfileID ;"; $sProfile= $oDb->getColumn($sSQLQuery); This will get the ID of the current user Then it will retrieve from the database what the registration date is of that user and store it in $sProfile next steps would be to check if date of registration = today() ... if it is, show splashscreen. good luck! So how hard would this be to get finnished.