justjack Posted December 8, 2006 Share Posted December 8, 2006 All page coding and css are at [url=http://www.loadedmoment.com/index.php]http://www.loadedmoment.com/index.php [/url]Problem is this. I have no problem centering the login info, but only on my computer. I need it to center on every computer. And still keep the layout of the code after login. Question: Doesn't the php info stay where it is, or can I write it into my current layout? Quote Link to comment https://forums.phpfreaks.com/topic/29957-need-php-password-login-help-with-existing-page/ Share on other sites More sharing options...
.josh Posted December 8, 2006 Share Posted December 8, 2006 php is parsed on the server. then it all gets sent to the client. if you had for instance:blah.php[code]<html><head></head><body><table><tr><td> <?php echo "blahblahblah"; ?></td></tr></table></body></html>[/code]The server will look at that, parse the php and send this to the client:[code]<html><head></head><body><table><tr><td> blahblahblah</td></tr></table></body></html>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/29957-need-php-password-login-help-with-existing-page/#findComment-137620 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.