HormonX
12-03-2002, 02:13 AM
i have a little problem .. that am not sure hwo to solve.
on the page i have some information that is being pull from the database, at the end i have a button that when pressed will perform it's designated operation. What ever should happen when the button is pressed is working just fine .. but all the contents of the page are not there. i'll give you a briefexample of what am doing ....
//there is somecode here
//this code should obly be executed when thebutton is pressed.
if(!$no_button_value)
{
echo"nothing there";
}
else
{
//code fo the button is being executed
}
//below is where the information from the database is pulled.
//this is here even before thebuttonis pushed.
All i want to do .. is execute the code ... and dispaly a message without loosing any page content.
Have't i lost you yet ? :) I sure hope i didn't :)
Any help would be nice
HormonX
on the page i have some information that is being pull from the database, at the end i have a button that when pressed will perform it's designated operation. What ever should happen when the button is pressed is working just fine .. but all the contents of the page are not there. i'll give you a briefexample of what am doing ....
//there is somecode here
//this code should obly be executed when thebutton is pressed.
if(!$no_button_value)
{
echo"nothing there";
}
else
{
//code fo the button is being executed
}
//below is where the information from the database is pulled.
//this is here even before thebuttonis pushed.
All i want to do .. is execute the code ... and dispaly a message without loosing any page content.
Have't i lost you yet ? :) I sure hope i didn't :)
Any help would be nice
HormonX